mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Rename message methods and add #failure?
This commit is contained in:
parent
7277b3caaf
commit
73a0d51c1b
1 changed files with 7 additions and 2 deletions
|
@ -26,18 +26,23 @@ module Spectator::Expectations
|
||||||
# Indicates whether the expectation was satisifed or not.
|
# Indicates whether the expectation was satisifed or not.
|
||||||
getter? successful : Bool
|
getter? successful : Bool
|
||||||
|
|
||||||
|
# Indicates whether the expectation failed.
|
||||||
|
def failure? : Bool
|
||||||
|
!@successful
|
||||||
|
end
|
||||||
|
|
||||||
# Creates the result.
|
# Creates the result.
|
||||||
# The expectation is stored so that information from it may be lazy-loaded.
|
# The expectation is stored so that information from it may be lazy-loaded.
|
||||||
protected def initialize(@successful, @negated : Bool, @expectation : Expectation)
|
protected def initialize(@successful, @negated : Bool, @expectation : Expectation)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Description of the condition that satisfies, or meets, the expectation.
|
# Description of the condition that satisfies, or meets, the expectation.
|
||||||
def satisfy_message
|
def expected_message
|
||||||
message(@negated)
|
message(@negated)
|
||||||
end
|
end
|
||||||
|
|
||||||
# Description of what actually happened when the expectation was evaluated.
|
# Description of what actually happened when the expectation was evaluated.
|
||||||
def result_message
|
def actual_message
|
||||||
message(@successful)
|
message(@successful)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue