Class: RSpec::Matchers::BuiltIn::YieldSuccessiveArgs Private
- Inherits:
 - 
      BaseMatcher
        
- Object
 - BaseMatcher
 - RSpec::Matchers::BuiltIn::YieldSuccessiveArgs
 
 - Defined in:
 - lib/rspec/matchers/built_in/yield.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 yield_successive_args.
Not intended to be instantiated directly.
Constant Summary
Constant Summary
Constants inherited from BaseMatcher
Instance Method Summary (collapse)
- - (Boolean) does_not_match?(block) private
 - 
  
      - (YieldSuccessiveArgs) initialize(*args) 
  
    constructor
  private
    
A new instance of YieldSuccessiveArgs.
 
Methods inherited from BaseMatcher
#diffable?, #expects_call_stack_jump?, #match_unless_raises
Methods included from Composable
#===, #and, #description_of, enumerable?, #or, surface_descriptions_in, #values_match?
Methods included from Pretty
#name, split_words, #to_sentence, #to_word
Constructor Details
- (YieldSuccessiveArgs) initialize(*args)
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 YieldSuccessiveArgs
      354 355 356  | 
    
      # File 'lib/rspec/matchers/built_in/yield.rb', line 354 def initialize(*args) @expected = args end  | 
  
Instance Method Details
- (Boolean) does_not_match?(block)
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.
      366 367 368  | 
    
      # File 'lib/rspec/matchers/built_in/yield.rb', line 366 def does_not_match?(block) !matches?(block) && @probe.has_block? end  |