Sha256: e9875ed26461912daf325b0b7ca48bf99ab68bac88fe740747239a89e4d4d7a7

Contents?: true

Size: 703 Bytes

Versions: 45

Compression:

Stored size: 703 Bytes

Contents

require File.join(File.dirname(__FILE__), "..", "..", "test_helper")

require 'mocha/parameter_matchers/responds_with'
require 'mocha/inspect'

class RespondsWithTest < Test::Unit::TestCase
  
  include Mocha::ParameterMatchers
  
  def test_should_match_parameter_responding_with_expected_value
    matcher = responds_with(:upcase, 'FOO')
    assert matcher.matches?(['foo'])
  end
  
  def test_should_not_match_parameter_responding_with_unexpected_value
    matcher = responds_with(:upcase, 'FOO')
    assert !matcher.matches?(['bar'])
  end
  
  def test_should_describe_matcher
    matcher = responds_with(:foo, :bar)
    assert_equal 'responds_with(:foo, :bar)', matcher.mocha_inspect
  end
  
end

Version data entries

45 entries across 45 versions & 9 rubygems

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