Sha256: ebf0f8795077e7ee539e98625170eff6540611ef13dc4e730b60bd44ae772b44

Contents?: true

Size: 1.41 KB

Versions: 36

Compression:

Stored size: 1.41 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha
  module ParameterMatchers
    # Matches if any +matchers+ match.
    #
    # @param [*Array<Base>] matchers parameter matchers.
    # @return [AnyOf] parameter matcher.
    #
    # @see Expectation#with
    #
    # @example One parameter matcher matches.
    #   object = mock()
    #   object.expects(:method_1).with(any_of(1, 3))
    #   object.method_1(1)
    #   # no error raised
    #
    # @example The other parameter matcher matches.
    #   object = mock()
    #   object.expects(:method_1).with(any_of(1, 3))
    #   object.method_1(3)
    #   # no error raised
    #
    # @example Neither parameter matcher matches.
    #   object = mock()
    #   object.expects(:method_1).with(any_of(1, 3))
    #   object.method_1(2)
    #   # error raised, because method_1 was not called with 1 or 3
    def any_of(*matchers)
      AnyOf.new(*matchers)
    end

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

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

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

Version data entries

36 entries across 36 versions & 2 rubygems

Version Path
mocha-2.7.1 lib/mocha/parameter_matchers/any_of.rb
mocha-2.7.0 lib/mocha/parameter_matchers/any_of.rb
mocha-2.6.1 lib/mocha/parameter_matchers/any_of.rb
mocha-2.6.0 lib/mocha/parameter_matchers/any_of.rb
mocha-2.5.0 lib/mocha/parameter_matchers/any_of.rb
mocha-2.4.5 lib/mocha/parameter_matchers/any_of.rb
mocha-2.4.4 lib/mocha/parameter_matchers/any_of.rb
mocha-2.4.3 lib/mocha/parameter_matchers/any_of.rb
mocha-2.4.2 lib/mocha/parameter_matchers/any_of.rb
mocha-2.4.1 lib/mocha/parameter_matchers/any_of.rb
mocha-2.4.0 lib/mocha/parameter_matchers/any_of.rb
mocha-2.2.0 lib/mocha/parameter_matchers/any_of.rb
mocha-2.1.0 lib/mocha/parameter_matchers/any_of.rb
mocha-2.0.4 lib/mocha/parameter_matchers/any_of.rb
mocha-2.0.3 lib/mocha/parameter_matchers/any_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/any_of.rb
mocha-2.0.2 lib/mocha/parameter_matchers/any_of.rb
mocha-1.16.1 lib/mocha/parameter_matchers/any_of.rb
mocha-1.15.1 lib/mocha/parameter_matchers/any_of.rb
mocha-2.0.1 lib/mocha/parameter_matchers/any_of.rb