mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Fix verbage around failure message
This commit is contained in:
parent
6e62ccdfc5
commit
5fd1547ced
2 changed files with 5 additions and 5 deletions
|
@ -61,12 +61,12 @@ describe Spectator::Expectations::Expectation do
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when negated" do
|
context "when negated" do
|
||||||
it "equals the matcher's #negated_message" do
|
it "equals the matcher's #message" do
|
||||||
value = 42
|
value = 42
|
||||||
match_data = new_matcher(value).match(new_partial(value))
|
match_data = new_matcher(value).match(new_partial(value))
|
||||||
match_data.matched?.should be_true # Sanity check.
|
match_data.matched?.should be_true # Sanity check.
|
||||||
expectation = Spectator::Expectations::Expectation.new(match_data, true)
|
expectation = Spectator::Expectations::Expectation.new(match_data, true)
|
||||||
expectation.actual_message.should eq(match_data.negated_message)
|
expectation.actual_message.should eq(match_data.message)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -80,11 +80,11 @@ describe Spectator::Expectations::Expectation do
|
||||||
end
|
end
|
||||||
|
|
||||||
context "when negated" do
|
context "when negated" do
|
||||||
it "equals the matcher's #message" do
|
it "equals the matcher's #negated_message" do
|
||||||
match_data = new_matcher(42).match(new_partial(777))
|
match_data = new_matcher(42).match(new_partial(777))
|
||||||
match_data.matched?.should be_false # Sanity check.
|
match_data.matched?.should be_false # Sanity check.
|
||||||
expectation = Spectator::Expectations::Expectation.new(match_data, true)
|
expectation = Spectator::Expectations::Expectation.new(match_data, true)
|
||||||
expectation.actual_message.should eq(match_data.message)
|
expectation.actual_message.should eq(match_data.negated_message)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -31,7 +31,7 @@ module Spectator::Expectations
|
||||||
|
|
||||||
# Text that indicates what the outcome was.
|
# Text that indicates what the outcome was.
|
||||||
def actual_message
|
def actual_message
|
||||||
satisfied? ? @match_data.message : @match_data.negated_message
|
@match_data.matched? ? @match_data.message : @match_data.negated_message
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue