Sha256: 3e34a6a8eb0808fbd6ab8db228a2189bb3c449b989b894e7fcb24efafcd17b97

Contents?: true

Size: 1.44 KB

Versions: 61

Compression:

Stored size: 1.44 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha

  module ParameterMatchers

    # Matches if any +matchers+ match.
    #
    # @param [*Array<Base>] parameter_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 { |matcher| matcher.mocha_inspect }.join(", ") })"
      end

    end

  end

end

Version data entries

61 entries across 50 versions & 5 rubygems

Version Path
mocha-1.6.0 lib/mocha/parameter_matchers/any_of.rb
mocha-1.5.0 lib/mocha/parameter_matchers/any_of.rb
mocha-1.4.0 lib/mocha/parameter_matchers/any_of.rb
mocha-1.3.0 lib/mocha/parameter_matchers/any_of.rb
mocha-1.2.1 lib/mocha/parameter_matchers/any_of.rb
mocha-1.2.0 lib/mocha/parameter_matchers/any_of.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/lib/mocha/parameter_matchers/any_of.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/lib/mocha/parameter_matchers/any_of.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/lib/mocha/parameter_matchers/any_of.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/apl-library-0.0.90/vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/lib/mocha/parameter_matchers/any_of.rb
mocha-1.1.0 lib/mocha/parameter_matchers/any_of.rb
mocha-1.0.0 lib/mocha/parameter_matchers/any_of.rb
mocha-1.0.0.alpha lib/mocha/parameter_matchers/any_of.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/any_of.rb
challah-1.0.0 vendor/bundle/gems/mocha-0.14.0/lib/mocha/parameter_matchers/any_of.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/lib/mocha/parameter_matchers/any_of.rb
mocha-0.14.0 lib/mocha/parameter_matchers/any_of.rb
challah-1.0.0.beta3 vendor/bundle/gems/mocha-0.13.3/lib/mocha/parameter_matchers/any_of.rb
mocha-0.14.0.alpha lib/mocha/parameter_matchers/any_of.rb
challah-1.0.0.beta2 vendor/bundle/gems/mocha-0.13.3/lib/mocha/parameter_matchers/any_of.rb