class Spectator::FailResult

Overview

Outcome that indicates an example failed. This typically means an assertion did not pass.

Direct Known Subclasses

Defined in:

spectator/fail_result.cr

Constructors

Instance Method Summary

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

Constructor Detail

def self.new(elapsed, error : Exception, expectations = [] of Expectation) #

Creates a failure result. The elapsed argument is the length of time it took to run the example. The error is the exception raised that caused the failure.


[View source]

Instance Method Detail

def accept(visitor) #

Calls the failure method on visitor.


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

Calls the failure method on visitor.


[View source]
def error : Exception #

Error that occurred while running the example. This describes the primary reason for the failure.


[View source]
def fail? : Bool #

Indicates whether the example failed.


[View source]
def location : Location #

Attempts to retrieve the location where the example failed. This only works if the location of the failed expectation was reported. If available, returns a Location, otherwise raises NilAssertionError.


[View source]
def location? : Location | Nil #

Attempts to retrieve the location where the example failed. This only works if the location of the failed expectation was reported. If available, returns a Location, otherwise nil.


[View source]
def pass? : Bool #

Indicates whether the example passed.


[View source]
def to_json(json : JSON::Builder) #

Creates a JSON object from the result information.


[View source]
def to_s(io) #

One-word description of the result.


[View source]