Object
@private
# File lib/rspec/mocks/any_instance/chain.rb, line 54 def constrained_to_any_of?(*constraints) constraints.any? do |constraint| messages.any? do |message| message.first.first == constraint end end end
@private
# File lib/rspec/mocks/any_instance/chain.rb, line 63 def expectation_fulfilled! @expectation_fulfilled = true end
# File lib/rspec/mocks/any_instance/chain.rb, line 67 def never ErrorGenerator.raise_double_negation_error("expect_any_instance_of(MyClass)") if negated? super end
@private
# File lib/rspec/mocks/any_instance/chain.rb, line 46 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
Generated with the Darkfish Rdoc Generator 2.