File: //usr/local/rvm/src/ruby-3.0.2/spec/mspec/lib/mspec/matchers/equal.rb
class EqualMatcher
def initialize(expected)
@expected = expected
end
def matches?(actual)
@actual = actual
@actual.equal?(@expected)
end
def failure_message
["Expected #{MSpec.format(@actual)}",
"to be identical to #{MSpec.format(@expected)}"]
end
def negative_failure_message
["Expected #{MSpec.format(@actual)}",
"not to be identical to #{MSpec.format(@expected)}"]
end
end
module MSpecMatchers
private def equal(expected)
EqualMatcher.new(expected)
end
end