Sha256: afa021b8b1b260dab9210e8597ec7ef0c2c8516903c616c287f80f4ba3cc4766

Contents?: true

Size: 1.07 KB

Versions: 118

Compression:

Stored size: 1.07 KB

Contents

require 'mocha/parameter_matchers/base'

module Mocha
  
  module ParameterMatchers

    # :call-seq: all_of(*parameter_matchers) -> parameter_matcher
    #
    # Matches if 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
    #
    #   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
    
    class AllOf < Base # :nodoc:
      
      def initialize(*matchers)
        @matchers = matchers
      end
    
      def matches?(available_parameters)
        parameter = available_parameters.shift
        @matchers.all? { |matcher| matcher.to_matcher.matches?([parameter]) }
      end
      
      def mocha_inspect
        "all_of(#{@matchers.map { |matcher| matcher.mocha_inspect }.join(", ") })"
      end
      
    end
    
  end
  
end

Version data entries

118 entries across 113 versions & 13 rubygems

Version Path
dradis-mediawiki-3.17.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.16.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.15.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.14.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.13.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.12.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.11.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.10.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.9.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.8.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.7.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
dradis-mediawiki-3.6.0 test/vendor/mocha-0.9.5/lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.3.20081220175348 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.3.20081230175553 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.4.20090128164727 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.5.20090201123802 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.6.20090629164857 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.6.20090629165308 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.6.20090701111305 lib/mocha/parameter_matchers/all_of.rb
floehopper-mocha-0.9.7.20090701124354 lib/mocha/parameter_matchers/all_of.rb