Class: RSpec::Matchers::BuiltIn::OperatorMatcher Private
- Inherits:
-
Object
- Object
- RSpec::Matchers::BuiltIn::OperatorMatcher
- Defined in:
- lib/rspec/matchers/built_in/operators.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Provides the implementation for operator matchers.
Not intended to be instantiated directly.
Only available for use with should
.
Instance Method Summary collapse
- #description ⇒ String private
-
#initialize(actual) ⇒ OperatorMatcher
constructor
private
A new instance of OperatorMatcher.
Constructor Details
#initialize(actual) ⇒ OperatorMatcher
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of OperatorMatcher.
41 42 43 |
# File 'lib/rspec/matchers/built_in/operators.rb', line 41 def initialize(actual) @actual = actual end |
Instance Method Details
#description ⇒ String
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
76 77 78 |
# File 'lib/rspec/matchers/built_in/operators.rb', line 76 def description "#{@operator} #{RSpec::Support::ObjectFormatter.format(@expected)}" end |