Packages

final class IgnoreWord extends AnyRef

Class that supports registration of ignored tests via the ItWord instance referenced from FlatSpec's ignore field.

This class enables syntax such as the following registration of an ignored test:

ignore should "pop values in last-in-first-out order" in { ... }
^

For more information and examples of the use of the ignore field, see Ignored tests section in the main documentation for this trait.

Attributes
protected
Source
AsyncFlatSpecLike.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. IgnoreWord
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new IgnoreWord()

Value Members

  1. def can(string: String): IgnoreVerbString

    Supports the registration of ignored tests with can in a FlatSpec.

    Supports the registration of ignored tests with can in a FlatSpec.

    This method supports syntax such as the following:

    ignore can "pop values in last-in-first-out order" in { ... }
           ^
    

    For more information and examples of the use of the ignore field, see Ignored tests section in the main documentation for trait FlatSpec.

  2. def must(string: String): IgnoreVerbString

    Supports the registration of ignored tests with must in a FlatSpec.

    Supports the registration of ignored tests with must in a FlatSpec.

    This method supports syntax such as the following:

    ignore must "pop values in last-in-first-out order" in { ... }
           ^
    

    For more information and examples of the use of the ignore field, see Ignored tests section in the main documentation for trait FlatSpec.

  3. def should(string: String): IgnoreVerbString

    Supports the registration of ignored tests with should in a FlatSpec.

    Supports the registration of ignored tests with should in a FlatSpec.

    This method supports syntax such as the following:

    ignore should "pop values in last-in-first-out order" in { ... }
           ^
    

    For more information and examples of the use of the ignore field, see Ignored tests section in the main documentation for trait FlatSpec.