Sha256: 235a24e38ea8a532b4786f8054828f69deb87f676a574ace6758e2c811a7a4b1

Contents?: true

Size: 1.43 KB

Versions: 17

Compression:

Stored size: 1.43 KB

Contents

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

require 'mocha/parameter_matchers/regexp_matches'
require 'mocha/inspect'

class RegexpMatchesTest < Mocha::TestCase

  include Mocha::ParameterMatchers

  def test_should_match_parameter_matching_regular_expression
    matcher = regexp_matches(/oo/)
    assert matcher.matches?(['foo'])
  end

  def test_should_not_match_parameter_not_matching_regular_expression
    matcher = regexp_matches(/oo/)
    assert !matcher.matches?(['bar'])
  end

  def test_should_describe_matcher
    matcher = regexp_matches(/oo/)
    assert_equal "regexp_matches(/oo/)", matcher.mocha_inspect
  end

  def test_should_not_raise_error_on_empty_arguments
    matcher = regexp_matches(/oo/)
    assert_nothing_raised { matcher.matches?([]) }
  end

  def test_should_not_match_on_empty_arguments
    matcher = regexp_matches(/oo/)
    assert !matcher.matches?([])
  end

  def test_should_not_raise_error_on_argument_that_does_not_respond_to_equals_tilde
    object_not_responding_to_equals_tilde = Class.new { undef =~ }.new
    matcher = regexp_matches(/oo/)
    assert_nothing_raised { matcher.matches?([object_not_responding_to_equals_tilde]) }
  end

  def test_should_not_match_on_argument_that_does_not_respond_to_equals_tilde
    object_not_responding_to_equals_tilde = Class.new { undef =~ }.new
    matcher = regexp_matches(/oo/)
    assert !matcher.matches?([object_not_responding_to_equals_tilde])
  end
end

Version data entries

17 entries across 14 versions & 4 rubygems

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