class Spectator::ErrorResult

Overview

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

Defined in:

spectator/error_result.cr

Instance Method Summary

Instance methods inherited from class Spectator::FailResult

accept(visitor)
accept(visitor, &)
accept
, error : Exception error, fail? : Bool fail?, location : Location location, location? : Location | Nil location?, pass? : Bool pass?, to_json(json : JSON::Builder) to_json, to_s(io) to_s

Constructor methods inherited from class Spectator::FailResult

new(elapsed, error : Exception, expectations = [] of Expectation) new

Instance methods inherited from class Spectator::Result

accept(visitor) accept, elapsed : Time::Span elapsed, expectations : Enumerable(Expectation) expectations, fail? : Bool fail?, pass? : Bool pass?, pending? : Bool pending?, to_json(json : JSON::Builder) to_json

Constructor methods inherited from class Spectator::Result

new(elapsed : Time::Span, expectations : Enumerable(Spectator::Expectation) = [] of Expectation) new

Instance methods inherited from class Object

should(matcher, message = nil) should, should_eventually(matcher, message = nil) should_eventually, should_never(matcher, message = nil) should_never, should_not(matcher, message = nil) should_not

Instance Method Detail

def accept(visitor) #

Calls the error method on visitor.


[View source]
def accept(visitor, &) #

Calls the error method on visitor.


[View source]
def to_s(io) #

One-word description of the result.


[View source]