Parent

Class/Module Index [+]

Quicksearch

RSpec::Mocks::AnyInstance::Chain

Public Class Methods

new(*args, &block) click to toggle source
# File lib/rspec/mocks/any_instance/chain.rb, line 5
def initialize(*args, &block)
  @expectation_args  = args
  @expectation_block = block
end

Public Instance Methods

constrained_to_any_of?(*constraints) click to toggle source

@private

# File lib/rspec/mocks/any_instance/chain.rb, line 53
def constrained_to_any_of?(*constraints)
  constraints.any? do |constraint|
    messages.any? do |message|
      message.first.first == constraint
    end
  end
end
expectation_fulfilled!() click to toggle source

@private

# File lib/rspec/mocks/any_instance/chain.rb, line 62
def expectation_fulfilled!
  @expectation_fulfilled = true
end
never() click to toggle source
# File lib/rspec/mocks/any_instance/chain.rb, line 66
def never
  ErrorGenerator.raise_double_negation_error("expect_any_instance_of(MyClass)") if negated?
  super
end
playback!(instance) click to toggle source

@private

# File lib/rspec/mocks/any_instance/chain.rb, line 45
def playback!(instance)
  message_expectation = create_message_expectation_on(instance)
  messages.inject(message_expectation) do |object, message|
    object.__send__(*message.first, &message.last)
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.