class

Spectator::ExampleBuilder

Inherits Spectator::NodeBuilder / Reference / Object

Constructs examples. Call #build to produce an Example.

Constructors

new(context_builder : -> Context, entrypoint : Example -> , name : String | Nil = nil, location : Location | Nil = nil, metadata : Metadata | Nil = nil)

Creates the builder. A proc provided by context_builder is used to create a unique Context for each example produced by #build. The entrypoint indicates the proc used to invoke the test code in the example. The name, location, and metadata will be applied to the Example produced by #build.

Source
new(context_builder : -> Context, entrypoint : Example -> , name : Example -> String, location : Location | Nil = nil, metadata : Metadata | Nil = nil)

Creates the builder. A proc provided by context_builder is used to create a unique Context for each example produced by #build. The entrypoint indicates the proc used to invoke the test code in the example. The name is an interpolated string that runs in the context of the example. location, and metadata will be applied to the Example produced by #build.

Source

Instance methods

build(parent = nil)

Constructs an example with previously defined attributes and context. The parent is an already constructed example group to nest the new example under. It can be nil if the new example won't have a parent.

Source