Sha256: 44509f5cd6cae7c533ef95ade1d68891b827b6b95b5ca1aa2efde5f3dd8eb05e
Contents?: true
Size: 673 Bytes
Versions: 42
Compression:
Stored size: 673 Bytes
Contents
require File.join(File.dirname(__FILE__), "..", "..", "test_helper") require 'mocha/parameter_matchers/regexp_matches' require 'mocha/inspect' class RegexpMatchesTest < Test::Unit::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 end
Version data entries
42 entries across 42 versions & 7 rubygems