Sha256: b53b31b67aeb396d2cdaed95880a577069bb73a5b4239c6f04664aa386a17ac3

Contents?: true

Size: 684 Bytes

Versions: 44

Compression:

Stored size: 684 Bytes

Contents

require File.expand_path('../../../test_helper', __FILE__)

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

44 entries across 36 versions & 3 rubygems

Version Path
challah-1.0.0.beta3 vendor/bundle/gems/mocha-0.13.3/test/unit/parameter_matchers/responds_with_test.rb
mocha-0.14.0.alpha test/unit/parameter_matchers/responds_with_test.rb
challah-1.0.0.beta2 vendor/bundle/gems/mocha-0.13.3/test/unit/parameter_matchers/responds_with_test.rb
challah-1.0.0.beta vendor/bundle/gems/mocha-0.13.3/test/unit/parameter_matchers/responds_with_test.rb
mocha-0.13.3 test/unit/parameter_matchers/responds_with_test.rb
mocha-0.12.10 test/unit/parameter_matchers/responds_with_test.rb
mocha-0.12.9 test/unit/parameter_matchers/responds_with_test.rb
mocha-0.13.2 test/unit/parameter_matchers/responds_with_test.rb
mocha-0.12.8 test/unit/parameter_matchers/responds_with_test.rb
mocha-0.13.1 test/unit/parameter_matchers/responds_with_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/mocha-0.13.0/test/unit/parameter_matchers/responds_with_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.12.2/test/unit/parameter_matchers/responds_with_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/mocha-0.12.2/test/unit/parameter_matchers/responds_with_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/mocha-0.12.3/test/unit/parameter_matchers/responds_with_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.13.0/test/unit/parameter_matchers/responds_with_test.rb
challah-rolls-0.2.0 vendor/bundle/gems/mocha-0.12.3/test/unit/parameter_matchers/responds_with_test.rb
challah-0.8.3 vendor/bundle/gems/mocha-0.13.0/test/unit/parameter_matchers/responds_with_test.rb
challah-0.8.3 vendor/bundle/gems/mocha-0.12.3/test/unit/parameter_matchers/responds_with_test.rb
mocha-0.13.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-0.12.7 test/unit/parameter_matchers/responds_with_test.rb