Sha256: 406f3a166dc8eb6b8525408bb73dc3b89c65c38f85b37ada6d508b0b3a2dbe37

Contents?: true

Size: 990 Bytes

Versions: 13

Compression:

Stored size: 990 Bytes

Contents

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

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

class RespondsWithTest < Mocha::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_match_parameter_responding_with_nested_responds_with_matcher
    matcher = responds_with(:foo, responds_with(:bar, 'baz'))
    object = Class.new { def foo; Class.new { def bar; 'baz'; end }.new; end }.new
    assert matcher.matches?([object])
  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

13 entries across 10 versions & 2 rubygems

Version Path
mocha-1.6.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.5.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.4.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.3.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.2.1 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.2.0 test/unit/parameter_matchers/responds_with_test.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/test/unit/parameter_matchers/responds_with_test.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/test/unit/parameter_matchers/responds_with_test.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/test/unit/parameter_matchers/responds_with_test.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/test/unit/parameter_matchers/responds_with_test.rb
mocha-1.1.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.0.0 test/unit/parameter_matchers/responds_with_test.rb
mocha-1.0.0.alpha test/unit/parameter_matchers/responds_with_test.rb