Class: RSpec::Matchers::BuiltIn::SpecificValuesChange Private
- Inherits:
- 
      BaseMatcher
        - Object
- BaseMatcher
- RSpec::Matchers::BuiltIn::SpecificValuesChange
 
- 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.
Base class for specifying a change from and/or to specific values.
Direct Known Subclasses
Constant Summary
Constant Summary
Constants inherited from BaseMatcher
Instance Method Summary (collapse)
- 
  
      - (SpecificValuesChange) initialize(change_details, from, to) 
  
    constructor
  private
    A new instance of SpecificValuesChange. 
Methods inherited from BaseMatcher
#diffable?, #expects_call_stack_jump?, #match_unless_raises
Methods included from BaseMatcher::DefaultFailureMessages
Methods included from Composable
#===, #and, #description_of, #or, should_enumerate?, surface_descriptions_in, unreadable_io?, #values_match?
Constructor Details
- (SpecificValuesChange) initialize(change_details, from, to)
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 SpecificValuesChange
| 162 163 164 165 166 | # File 'lib/rspec/matchers/built_in/change.rb', line 162 def initialize(change_details, from, to) @change_details = change_details @expected_before = from @expected_after = to end |