# File lib/mspec/matchers/eql.rb, line 2 def initialize(expected) @expected = expected end
# File lib/mspec/matchers/eql.rb, line 11 def failure_message ["Expected #{@actual.pretty_inspect}", "to have same value and type as #{@expected.pretty_inspect}"] end
# File lib/mspec/matchers/eql.rb, line 6 def matches?(actual) @actual = actual @actual.eql?(@expected) end
# File lib/mspec/matchers/eql.rb, line 16 def negative_failure_message ["Expected #{@actual.pretty_inspect}", "not to have same value or type as #{@expected.pretty_inspect}"] end