class RSpec::Mocks::VerifyingMessageExpectation
A message expectation that knows about the real implementation of the message being expected, so that it can verify that any expectations have the valid arguments. @api private
Attributes
A level of indirection is used here rather than just passing in the method itself, since method look up is expensive and we only want to do it if actually needed.
Conceptually the method reference makes more sense as a constructor argument since it should be immutable, but it is significantly more straight forward to build the object in pieces so for now it stays as an accessor.
Public Class Methods
Calls superclass method
RSpec::Mocks::MessageExpectation::ImplementationDetails::new
# File rspec-mocks/lib/rspec/mocks/verifying_message_expectation.rb, line 20 def initialize(*args) super end
Public Instance Methods
@private
Calls superclass method
RSpec::Mocks::MessageExpectation#with
# File rspec-mocks/lib/rspec/mocks/verifying_message_expectation.rb, line 25 def with(*args, &block) super(*args, &block).tap do validate_expected_arguments! do |signature| example_call_site_args = [:an_arg] * signature.min_non_kw_args example_call_site_args << :kw_args_hash if signature.required_kw_args.any? @argument_list_matcher.resolve_expected_args_based_on(example_call_site_args) end end end