mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Fix failing tests
This commit is contained in:
parent
dd943c9046
commit
365bd1ec2f
2 changed files with 4 additions and 3 deletions
|
@ -59,8 +59,9 @@ describe Spectator::Expectations::Expectation do
|
|||
match_data = new_matcher(value).match(new_partial(value))
|
||||
expectation = Spectator::Expectations::Expectation.new(match_data, true)
|
||||
expectation.values.each do |labeled_value|
|
||||
label = labeled_value.label
|
||||
value = labeled_value.value
|
||||
value.to_s.should start_with(/not/i) if value.responds_to?(:negate)
|
||||
value.to_s.should start_with(/not/i) if label == :expected
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -21,12 +21,12 @@ module Spectator::Matchers
|
|||
|
||||
# Produces a stringified value.
|
||||
def to_s(io)
|
||||
value.inspect(io)
|
||||
io << value
|
||||
end
|
||||
|
||||
# Produces a stringified value with additional information.
|
||||
def inspect(io)
|
||||
value.inspect(io)
|
||||
io << value
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue