2019-01-24 04:03:44 +00:00
|
|
|
require "../spec_helper"
|
|
|
|
|
|
|
|
describe Spectator::Matchers::LessThanMatcher do
|
|
|
|
describe "#match?" do
|
|
|
|
it "compares using #<" do
|
|
|
|
spy = SpySUT.new
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(spy)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(42)
|
|
|
|
matcher.match?(partial).should be_true
|
|
|
|
spy.lt_call_count.should be > 0
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a larger value" do
|
|
|
|
it "is true" do
|
|
|
|
actual = 42
|
|
|
|
expected = 777
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(actual)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(expected)
|
|
|
|
matcher.match?(partial).should be_true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a smaller value" do
|
|
|
|
it "is false" do
|
|
|
|
actual = 777
|
|
|
|
expected = 42
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(actual)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(expected)
|
|
|
|
matcher.match?(partial).should be_false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with an equal value" do
|
|
|
|
it "is false" do
|
|
|
|
value = 42
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value)
|
|
|
|
matcher.match?(partial).should be_false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#message" do
|
|
|
|
it "mentions <" do
|
|
|
|
value = 42
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value)
|
|
|
|
matcher.message(partial).should contain("<")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "contains the actual label" do
|
|
|
|
value = 42
|
|
|
|
label = "everything"
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value, label)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value)
|
|
|
|
matcher.message(partial).should contain(label)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "contains the expected label" do
|
|
|
|
value = 42
|
|
|
|
label = "everything"
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(label, value)
|
|
|
|
matcher.message(partial).should contain(label)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when expected label is omitted" do
|
|
|
|
it "contains stringified form of expected value" do
|
|
|
|
value1 = 42
|
|
|
|
value2 = 777
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value1)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value2)
|
|
|
|
matcher.message(partial).should contain(value2.to_s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "#negated_message" do
|
|
|
|
it "mentions <" do
|
|
|
|
value = 42
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value)
|
|
|
|
matcher.negated_message(partial).should contain("<")
|
|
|
|
end
|
|
|
|
|
|
|
|
it "contains the actual label" do
|
|
|
|
value = 42
|
|
|
|
label = "everything"
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value, label)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value)
|
|
|
|
matcher.negated_message(partial).should contain(label)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "contains the expected label" do
|
|
|
|
value = 42
|
|
|
|
label = "everything"
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(label, value)
|
|
|
|
matcher.negated_message(partial).should contain(label)
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when expected label is omitted" do
|
|
|
|
it "contains stringified form of expected value" do
|
|
|
|
value1 = 42
|
|
|
|
value2 = 777
|
2019-02-15 00:04:59 +00:00
|
|
|
partial = new_partial(value1)
|
2019-01-24 04:03:44 +00:00
|
|
|
matcher = Spectator::Matchers::LessThanMatcher.new(value2)
|
|
|
|
matcher.negated_message(partial).should contain(value2.to_s)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|