Class: Mocha::ParameterMatchers::Equals
- Defined in:
- lib/mocha/parameter_matchers/equals.rb
Overview
Parameter matcher which matches when actual parameter equals expected value.
Instance Method Summary collapse
-
#initialize(value) ⇒ Equals
constructor
A new instance of Equals.
- #matches?(available_parameters) ⇒ Boolean
- #mocha_inspect ⇒ Object
Methods inherited from Base
#&, #to_matcher, #|
Constructor Details
#initialize(value) ⇒ Equals
Returns a new instance of Equals.
34 35 36 |
# File 'lib/mocha/parameter_matchers/equals.rb', line 34 def initialize(value) @value = value end |
Instance Method Details
#matches?(available_parameters) ⇒ Boolean
39 40 41 42 |
# File 'lib/mocha/parameter_matchers/equals.rb', line 39 def matches?(available_parameters) parameter = available_parameters.shift parameter == @value end |
#mocha_inspect ⇒ Object
45 46 47 |
# File 'lib/mocha/parameter_matchers/equals.rb', line 45 def mocha_inspect @value.mocha_inspect end |