class RSpec::Mocks::AnyInstance::ExpectChainChain

@private

Public Class Methods

Calls superclass method
# File rspec-mocks/lib/rspec/mocks/any_instance/expect_chain_chain.rb, line 6
def initialize(*args)
  super
  @expectation_fulfilled = false
end

Public Instance Methods

# File rspec-mocks/lib/rspec/mocks/any_instance/expect_chain_chain.rb, line 11
def expectation_fulfilled?
  @expectation_fulfilled
end
Calls superclass method
# File rspec-mocks/lib/rspec/mocks/any_instance/expect_chain_chain.rb, line 15
def playback!(instance)
  super.tap { @expectation_fulfilled = true }
end