class RSpec::Mocks::ArgumentListMatcher

@see ArgumentMatchers
This class is immutable.
arg_list_matcher.args_match?(123, :a => ‘b’)
arg_list_matcher = RSpec::Mocks::ArgumentListMatcher.new(123, hash_including(:a => ‘b’))
include RSpec::Mocks::ArgumentMatchers
require ‘rspec/mocks/argument_list_matcher’
matching without using the rest of rspec-mocks.
enables 3rd party mocking libs to take advantage of rspec’s argument
Can also be used directly to match the contents of any ‘Array`. This
expect(object).to receive(:message).with(hash_including(:a => ’b’))
match against the real objects .e.g.
Values passed to ‘with` can be literal values or argument matchers that
object.message(:a, ’b’, 3)
expect(object).to receive(:message).with(:a, ‘b’, 3)
the ‘with` method on a `MessageExpectation`:
Wrapper for matching arguments against a list of expected values. Used by

def args_match?(*args)

Other tags:
    See: #initialize -

Parameters:
  • args (Array) --

Other tags:
    Api: - public
def args_match?(*args)
  Support::FuzzyMatcher.values_match?(@matchers, args)
end

def initialize(*expected_args)

Other tags:
    See: #args_match? -
    See: ArgumentMatchers -

Parameters:
  • expected_args (Array) -- a list of expected literals and/or argument matchers

Other tags:
    Api: - public
def initialize(*expected_args)
  @expected_args = expected_args
  @matchers = case expected_args.first
    when ArgumentMatchers::AnyArgsMatcher then Array
    when ArgumentMatchers::NoArgsMatcher  then []
    else expected_args
  end
end