method

constraints_match?

constraints_match?(args)
public

No documentation available.

# File lib/spec/mocks/argument_expectation.rb, line 200
      def constraints_match?(args)
        return false if args.length != @expected_params.length
        @expected_params.each_index { |i| return false unless @expected_params[i].matches?(args[i]) }
        return true
      end