Class: Spec::Matchers::PositiveOperatorMatcher
- Inherits:
-
OperatorMatcher
- Object
- OperatorMatcher
- Spec::Matchers::PositiveOperatorMatcher
- Defined in:
- lib/spec/matchers/operator_matcher.rb
Overview
:nodoc:
Instance Method Summary collapse
Methods inherited from OperatorMatcher
#description, #fail_with_message, get, #initialize, register, registry, use_custom_matcher_or_delegate
Constructor Details
This class inherits a constructor from Spec::Matchers::OperatorMatcher
Instance Method Details
#__delegate_operator(actual, operator, expected) ⇒ Object
57 58 59 60 61 62 63 64 |
# File 'lib/spec/matchers/operator_matcher.rb', line 57 def __delegate_operator(actual, operator, expected) return true if actual.__send__(operator, expected) if ['==','===', '=~'].include?(operator) ("expected: #{expected.inspect},\n got: #{actual.inspect} (using #{operator})") else ("expected: #{operator} #{expected.inspect},\n got: #{operator.gsub(/./, ' ')} #{actual.inspect}") end end |