@private
@private
# File lib/rspec/mocks/any_instance/chain.rb, line 59 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 73 def expectation_fulfilled! @expectation_fulfilled = true end
@private
# File lib/rspec/mocks/any_instance/chain.rb, line 68 def matches_args?(*args) @argument_list_matcher.args_match?(*args) end
# File lib/rspec/mocks/any_instance/chain.rb, line 77 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 51 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.