Trait/Object

org.scalatest.enablers

Readability

Related Docs: object Readability | package enablers

Permalink

trait Readability[-T] extends AnyRef

Supertrait for typeclasses that enable the be readable matcher syntax.

A Readability[T] provides access to the "readable nature" of type T in such a way that be readable matcher syntax can be used with type T. A T can be any type for which the concept of being readable makes sense, such as java.io.File. You can enable the be readable matcher syntax on your own type U by defining a Readability[U] for the type and making it available implicitly.

ScalaTest provides an implicit Readability instance for java.io.File and arbitary object with isReadable() or isReadable in the Readability companion object.

Source
Readability.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Readability
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def isReadable(thing: T): Boolean

    Permalink

    Determines whether the passed thing is readable, i.e., the passed file is readable.

    Determines whether the passed thing is readable, i.e., the passed file is readable.

    thing

    the thing to check for readability

    returns

    true if the passed thing is readable, false otherwise