Sha256: b1dce0a3a0d8cb862acd945eb7eca50372c016fb0c65f60636440d8330391879

Contents?: true

Size: 1.3 KB

Versions: 32

Compression:

Stored size: 1.3 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha
  module ParameterMatchers
    # Matches if all +matchers+ match.
    #
    # @param [*Array<Base>] matchers parameter matchers.
    # @return [AllOf] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example All parameter matchers match.
    #   object = mock()
    #   object.expects(:method_1).with(all_of(includes(1), includes(3)))
    #   object.method_1([1, 3])
    #   # no error raised
    #
    # @example One of the parameter matchers does not match.
    #   object = mock()
    #   object.expects(:method_1).with(all_of(includes(1), includes(3)))
    #   object.method_1([1, 2])
    #   # error raised, because method_1 was not called with object including 1 and 3
    def all_of(*matchers)
      AllOf.new(*matchers)
    end

    # Parameter matcher which combines a number of other matchers using a logical AND.
    class AllOf < Base
      # @private
      def initialize(*matchers)
        @matchers = matchers
      end

      # @private
      def matches?(available_parameters)
        parameter = available_parameters.shift
        @matchers.all? { |matcher| matcher.to_matcher.matches?([parameter]) }
      end

      # @private
      def mocha_inspect
        "all_of(#{@matchers.map(&:mocha_inspect).join(', ')})"
      end
    end
  end
end

Version data entries

32 entries across 32 versions & 2 rubygems

Version Path
mocha-2.5.0 lib/mocha/parameter_matchers/all_of.rb
mocha-2.4.5 lib/mocha/parameter_matchers/all_of.rb
mocha-2.4.4 lib/mocha/parameter_matchers/all_of.rb
mocha-2.4.3 lib/mocha/parameter_matchers/all_of.rb
mocha-2.4.2 lib/mocha/parameter_matchers/all_of.rb
mocha-2.4.1 lib/mocha/parameter_matchers/all_of.rb
mocha-2.4.0 lib/mocha/parameter_matchers/all_of.rb
mocha-2.2.0 lib/mocha/parameter_matchers/all_of.rb
mocha-2.1.0 lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.4 lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.3 lib/mocha/parameter_matchers/all_of.rb
fluent-plugin-google-cloud-logging-on-prem-0.1.0 vendor/ruby/3.1.0/gems/mocha-2.0.2/lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.2 lib/mocha/parameter_matchers/all_of.rb
mocha-1.16.1 lib/mocha/parameter_matchers/all_of.rb
mocha-1.15.1 lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.1 lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.0 lib/mocha/parameter_matchers/all_of.rb
mocha-1.16.0 lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.0.alpha.1 lib/mocha/parameter_matchers/all_of.rb
mocha-2.0.0.alpha lib/mocha/parameter_matchers/all_of.rb