Class: RSpec::Matchers::BuiltIn::ChangeRelatively Private
- Inherits:
-
Object
- Object
- RSpec::Matchers::BuiltIn::ChangeRelatively
- Includes:
- Composable
- Defined in:
- lib/rspec/matchers/built_in/change.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.
Used to specify a relative change.
Instance Method Summary (collapse)
-
- (ChangeRelatively) initialize(change_details, expected_delta, relativity, &comparer)
constructor
private
A new instance of ChangeRelatively.
Methods included from Composable
#===, #and, #description_of, enumerable?, #or, surface_descriptions_in, #values_match?
Constructor Details
- (ChangeRelatively) initialize(change_details, expected_delta, relativity, &comparer)
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 ChangeRelatively
110 111 112 113 114 115 |
# File 'lib/rspec/matchers/built_in/change.rb', line 110 def initialize(change_details, expected_delta, relativity, &comparer) @change_details = change_details @expected_delta = expected_delta @relativity = relativity @comparer = comparer end |