Sha256: c91071d47724aa25e525d491886a469de4af0edcf1a643f4442589d29375a4d9

Contents?: true

Size: 360 Bytes

Versions: 86

Compression:

Stored size: 360 Bytes

Contents

module Stub
  
  class Matcher

    attr_accessor :value

    def initialize(matches)
      @matches = matches
    end

    def matches?(available_parameters)
      value = available_parameters.shift
      @value = value
      @matches
    end

    def mocha_inspect
      "matcher(#{@matches})"
    end
    
    def to_matcher
      self
    end

  end
  
end

Version data entries

86 entries across 81 versions & 12 rubygems

Version Path
floehopper-mocha-0.9.3.20081220175348 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.3.20081230175553 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.4.20090128164727 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.5.20090201123802 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.6.20090629164857 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.6.20090629165308 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.6.20090701111305 test/unit/parameter_matchers/stub_matcher.rb
floehopper-mocha-0.9.7.20090701124354 test/unit/parameter_matchers/stub_matcher.rb
gsterndale-warrant-0.2.0 test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/stub_matcher.rb
gsterndale-warrant-0.3.0 test/rails_root/vendor/gems/mocha-0.9.4/test/unit/parameter_matchers/stub_matcher.rb
hashrocket-clearance-0.4.0 test/rails_root/vendor/gems/mocha-0.9.1/test/unit/parameter_matchers/stub_matcher.rb
hashrocket-clearance-0.4.1 test/rails_root/vendor/gems/mocha-0.9.1/test/unit/parameter_matchers/stub_matcher.rb
hashrocket-clearance-0.4.2 test/rails_root/vendor/gems/mocha-0.9.1/test/unit/parameter_matchers/stub_matcher.rb
hashrocket-clearance-0.4.3 test/rails_root/vendor/gems/mocha-0.9.1/test/unit/parameter_matchers/stub_matcher.rb
jferris-mocha-0.9.5.0.1240002286 test/unit/parameter_matchers/stub_matcher.rb
jferris-mocha-0.9.5.0.1240351621 test/unit/parameter_matchers/stub_matcher.rb
jferris-mocha-0.9.5.0.1241126838 test/unit/parameter_matchers/stub_matcher.rb
jferris-mocha-0.9.7.0.1247796736 test/unit/parameter_matchers/stub_matcher.rb
jferris-mocha-0.9.7.20090701124354 test/unit/parameter_matchers/stub_matcher.rb
jferris-mocha-0.9.7.20090911190113 test/unit/parameter_matchers/stub_matcher.rb