class RSpec::Mocks::AnyInstance::MessageChains

@private

def add(method_name, chain)

Other tags:
    Private: -
def add(method_name, chain)
  self[method_name] << chain
  chain
end

def all_expectations_fulfilled?

Other tags:
    Private: -
def all_expectations_fulfilled?
  all? {|method_name, chains| chains.all? {|chain| chain.expectation_fulfilled?}}
end

def has_expectation?(method_name)

Other tags:
    Private: -
def has_expectation?(method_name)
  self[method_name].find {|chain| chain.is_a?(ExpectationChain)}
end

def initialize

def initialize
  super {|h,k| h[k] = []}
end

def playback!(instance, method_name)

Other tags:
    Private: -
def playback!(instance, method_name)
  raise_if_second_instance_to_receive_message(instance)
  self[method_name].each {|chain| chain.playback!(instance)}
end

def raise_if_second_instance_to_receive_message(instance)

def raise_if_second_instance_to_receive_message(instance)
  @instance_with_expectation ||= instance if instance.is_a?(ExpectationChain)
  if instance.is_a?(ExpectationChain) && !@instance_with_expectation.equal?(instance)
    raise RSpec::Mocks::MockExpectationError, "Exactly one instance should have received the following message(s) but didn't: #{unfulfilled_expectations.sort.join(', ')}"
  end
end

def received_expected_message!(method_name)

Other tags:
    Private: -
def received_expected_message!(method_name)
  self[method_name].each {|chain| chain.expectation_fulfilled!}
end

def remove_stub_chains_for!(method_name)

Other tags:
    Private: -
def remove_stub_chains_for!(method_name)
  self[method_name].reject! {|chain| chain.is_a?(StubChain)}
end

def unfulfilled_expectations

Other tags:
    Private: -
def unfulfilled_expectations
  map do |method_name, chains|
    method_name.to_s if chains.last.is_a?(ExpectationChain) unless chains.last.expectation_fulfilled?
  end.compact
end