Class: Matchi::Matcher::Equal
Overview
Identity matcher.
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#initialize(expected) ⇒ Equal
constructor
Initialize the matcher with an object.
-
#matches? ⇒ Boolean
Boolean comparison between the actual value and the expected value.
Methods inherited from Base
Constructor Details
#initialize(expected) ⇒ Equal
Initialize the matcher with an object.
15 16 17 18 |
# File 'lib/matchi/matcher/equal.rb', line 15 def initialize(expected) super() @expected = expected end |
Instance Method Details
#matches? ⇒ Boolean
Boolean comparison between the actual value and the expected value.
30 31 32 |
# File 'lib/matchi/matcher/equal.rb', line 30 def matches?(*, **) expected.equal?(yield) end |