2019-01-26 23:41:21 +00:00
|
|
|
require "../spec_helper"
|
|
|
|
|
|
|
|
describe Spectator::Matchers::NilMatcher do
|
2019-02-28 18:31:05 +00:00
|
|
|
describe "#match" do
|
|
|
|
context "returned MatchData" do
|
|
|
|
describe "#matched?" do
|
|
|
|
context "with nil" do
|
|
|
|
it "is true" do
|
|
|
|
value = nil.as(Bool?)
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.matched?.should be_true
|
|
|
|
end
|
|
|
|
end
|
2019-01-26 23:41:21 +00:00
|
|
|
|
2019-02-28 18:31:05 +00:00
|
|
|
context "with not nil" do
|
|
|
|
it "is false" do
|
|
|
|
value = true.as(Bool?)
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.matched?.should be_false
|
|
|
|
end
|
|
|
|
end
|
2019-01-26 23:41:21 +00:00
|
|
|
end
|
|
|
|
|
2019-03-03 19:13:35 +00:00
|
|
|
describe "#values" do
|
|
|
|
context "expected" do
|
|
|
|
it "is nil" do
|
|
|
|
partial = new_partial(42)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
2019-03-22 17:53:20 +00:00
|
|
|
match_data_value_sans_prefix(match_data.values, :expected)[:value].should eq(nil)
|
2019-03-03 19:13:35 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "actual" do
|
|
|
|
it "is the actual value" do
|
|
|
|
value = 42
|
|
|
|
partial = new_partial(value)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
2019-03-22 17:53:20 +00:00
|
|
|
match_data_value_sans_prefix(match_data.values, :actual)[:value].should eq(value)
|
2019-03-03 19:13:35 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-02-28 18:31:05 +00:00
|
|
|
describe "#message" do
|
|
|
|
it "mentions nil" do
|
|
|
|
partial = new_partial(42)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.message.should contain("nil")
|
|
|
|
end
|
2019-01-26 23:41:21 +00:00
|
|
|
|
2019-02-28 18:31:05 +00:00
|
|
|
it "contains the actual label" do
|
|
|
|
value = 42
|
|
|
|
label = "everything"
|
|
|
|
partial = new_partial(value, label)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.message.should contain(label)
|
|
|
|
end
|
|
|
|
end
|
2019-01-26 23:41:21 +00:00
|
|
|
|
2019-02-28 18:31:05 +00:00
|
|
|
describe "#negated_message" do
|
|
|
|
it "mentions nil" do
|
|
|
|
partial = new_partial(42)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.negated_message.should contain("nil")
|
|
|
|
end
|
2019-01-26 23:41:21 +00:00
|
|
|
|
2019-02-28 18:31:05 +00:00
|
|
|
it "contains the actual label" do
|
|
|
|
value = 42
|
|
|
|
label = "everything"
|
|
|
|
partial = new_partial(value, label)
|
|
|
|
matcher = Spectator::Matchers::NilMatcher.new
|
|
|
|
match_data = matcher.match(partial)
|
|
|
|
match_data.negated_message.should contain(label)
|
|
|
|
end
|
|
|
|
end
|
2019-01-26 23:41:21 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|