Sha256: fc4e643938bf121d1d6c568a53a73c690358958717ea1fcc0be2f8be2d35d693

Contents?: true

Size: 901 Bytes

Versions: 17

Compression:

Stored size: 901 Bytes

Contents

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

class MethodMatcherTest < Mocha::TestCase

  include Mocha

  def test_should_match_if_actual_method_name_is_same_as_expected_method_name
    method_matcher = MethodMatcher.new(:method_name)
    assert method_matcher.match?(:method_name)
  end

  def test_should_match_if_actual_method_name_is_expected_method_name_as_string
    method_matcher = MethodMatcher.new(:method_name)
    assert method_matcher.match?('method_name')
  end

  def test_should_not_match_if_actual_method_name_is_not_same_as_expected_method_name
    method_matcher = MethodMatcher.new(:method_name)
    assert !method_matcher.match?(:different_method_name)
  end

  def test_should_describe_what_method_is_expected
    method_matcher = MethodMatcher.new(:method_name)
    assert_equal "method_name", method_matcher.mocha_inspect
  end

end

Version data entries

17 entries across 14 versions & 4 rubygems

Version Path
mocha-1.6.0 test/unit/method_matcher_test.rb
mocha-1.5.0 test/unit/method_matcher_test.rb
mocha-1.4.0 test/unit/method_matcher_test.rb
mocha-1.3.0 test/unit/method_matcher_test.rb
mocha-1.2.1 test/unit/method_matcher_test.rb
mocha-1.2.0 test/unit/method_matcher_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/method_matcher_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/method_matcher_test.rb
apl-library-0.0.90 vendor/bundle/ruby/1.9.1/gems/mocha-1.0.0/test/unit/method_matcher_test.rb
apl-library-0.0.90 vendor/bundle/ruby/2.1.0/gems/mocha-1.0.0/test/unit/method_matcher_test.rb
mocha-1.1.0 test/unit/method_matcher_test.rb
mocha-1.0.0 test/unit/method_matcher_test.rb
mocha-1.0.0.alpha test/unit/method_matcher_test.rb
tnargav-1.3.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/method_matcher_test.rb
challah-1.0.0 vendor/bundle/gems/mocha-0.14.0/test/unit/method_matcher_test.rb
tnargav-1.2.3 vendor/bundle/ruby/1.9.1/gems/mocha-0.14.0/test/unit/method_matcher_test.rb
mocha-0.14.0 test/unit/method_matcher_test.rb