mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Update specs to use new source arguments
Used `new_partial` where the underlying partial didn't matter for the test.
This commit is contained in:
parent
ac5c2bbe47
commit
1507a447c8
25 changed files with 439 additions and 439 deletions
|
@ -4,7 +4,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
describe "#match?" do
|
||||
it "compares using #===" do
|
||||
spy = SpySUT.new
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(42)
|
||||
partial = new_partial(42)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(spy)
|
||||
matcher.match?(partial).should be_true
|
||||
spy.case_eq_call_count.should be > 0
|
||||
|
@ -13,7 +13,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
context "with identical values" do
|
||||
it "is true" do
|
||||
value = 42
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value)
|
||||
partial = new_partial(value)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||
matcher.match?(partial).should be_true
|
||||
end
|
||||
|
@ -23,7 +23,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "is false" do
|
||||
value1 = 42
|
||||
value2 = 777
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value1)
|
||||
partial = new_partial(value1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||
matcher.match?(partial).should be_false
|
||||
end
|
||||
|
@ -33,7 +33,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "is true" do
|
||||
# Box is used because it is a reference type and doesn't override the == method.
|
||||
ref = Box.new([] of Int32)
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(ref)
|
||||
partial = new_partial(ref)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(ref)
|
||||
matcher.match?(partial).should be_true
|
||||
end
|
||||
|
@ -44,7 +44,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "is true" do
|
||||
array1 = [1, 2, 3]
|
||||
array2 = [1, 2, 3]
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(array1)
|
||||
partial = new_partial(array1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(array2)
|
||||
matcher.match?(partial).should be_true
|
||||
end
|
||||
|
@ -54,7 +54,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "is false" do
|
||||
array1 = [1, 2, 3]
|
||||
array2 = [4, 5, 6]
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(array1)
|
||||
partial = new_partial(array1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(array2)
|
||||
matcher.match?(partial).should be_false
|
||||
end
|
||||
|
@ -64,7 +64,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "is true" do
|
||||
value1 = "foobar"
|
||||
value2 = String
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value1)
|
||||
partial = new_partial(value1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||
matcher.match?(partial).should be_true
|
||||
end
|
||||
|
@ -74,7 +74,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "is false" do
|
||||
value1 = "foobar"
|
||||
value2 = Array
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value1)
|
||||
partial = new_partial(value1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||
matcher.match?(partial).should be_false
|
||||
end
|
||||
|
@ -85,7 +85,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
describe "#message" do
|
||||
it "mentions ===" do
|
||||
value = 42
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value)
|
||||
partial = new_partial(value)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||
matcher.message(partial).should contain("===")
|
||||
end
|
||||
|
@ -93,7 +93,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "contains the actual label" do
|
||||
value = 42
|
||||
label = "everything"
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(label, value)
|
||||
partial = new_partial(value, label)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||
matcher.message(partial).should contain(label)
|
||||
end
|
||||
|
@ -101,7 +101,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "contains the expected label" do
|
||||
value = 42
|
||||
label = "everything"
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value)
|
||||
partial = new_partial(value)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(label, value)
|
||||
matcher.message(partial).should contain(label)
|
||||
end
|
||||
|
@ -110,7 +110,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "contains stringified form of expected value" do
|
||||
value1 = 42
|
||||
value2 = 777
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value1)
|
||||
partial = new_partial(value1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||
matcher.message(partial).should contain(value2.to_s)
|
||||
end
|
||||
|
@ -120,7 +120,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
describe "#negated_message" do
|
||||
it "mentions ===" do
|
||||
value = 42
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value)
|
||||
partial = new_partial(value)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||
matcher.negated_message(partial).should contain("===")
|
||||
end
|
||||
|
@ -128,7 +128,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "contains the actual label" do
|
||||
value = 42
|
||||
label = "everything"
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(label, value)
|
||||
partial = new_partial(value, label)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value)
|
||||
matcher.negated_message(partial).should contain(label)
|
||||
end
|
||||
|
@ -136,7 +136,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "contains the expected label" do
|
||||
value = 42
|
||||
label = "everything"
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value)
|
||||
partial = new_partial(value)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(label, value)
|
||||
matcher.negated_message(partial).should contain(label)
|
||||
end
|
||||
|
@ -145,7 +145,7 @@ describe Spectator::Matchers::CaseMatcher do
|
|||
it "contains stringified form of expected value" do
|
||||
value1 = 42
|
||||
value2 = 777
|
||||
partial = Spectator::Expectations::ValueExpectationPartial.new(value1)
|
||||
partial = new_partial(value1)
|
||||
matcher = Spectator::Matchers::CaseMatcher.new(value2)
|
||||
matcher.negated_message(partial).should contain(value2.to_s)
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue