class Spectator::ErroredResult

Overview

Outcome that indicates running an example generated an error. This type of result occurs when an exception was raised. This is different from a "failed" result in that the error was not from a failed expectation.

Defined in:

spectator/errored_result.cr

Instance Method Summary

Instance methods inherited from class Spectator::FailedResult

call(interface)
call(interface, &)
call
, error : Exception error, to_s(io) to_s

Constructor methods inherited from class Spectator::FailedResult

new(example, elapsed, expectations, error : Exception) new

Instance methods inherited from class Spectator::FinishedResult

elapsed : Time::Span elapsed, expectations : Expectations::ExampleExpectations expectations

Constructor methods inherited from class Spectator::FinishedResult

new(example, elapsed : Time::Span, expectations : Spectator::Expectations::ExampleExpectations) new

Instance methods inherited from class Spectator::Result

call(interface)
call(interface, &block : Result -> _)
call
, example : Example example, to_json(json : JSON::Builder) to_json

Constructor methods inherited from class Spectator::Result

new(example : Spectator::Example) new

Instance methods inherited from class Object

should(matcher) should, should_eventually(matcher) should_eventually, should_never(matcher) should_never, should_not(matcher) should_not

Instance Method Detail

def call(interface) #

Calls the error method on interface.


[View source]
def call(interface, &) #

Calls the error method on interface and passes the yielded value.


[View source]
def to_s(io) #

One-word descriptor of the result.


[View source]