From cc251c2f9fd3f030c366a1777ba4fb53e8dc30d1 Mon Sep 17 00:00:00 2001 From: usa Date: Fri, 12 Oct 2012 16:41:34 +0000 Subject: merge revision(s) 37171: * test/ruby/test_regexp.rb (TestRegexp#test_raw_hyphen_and_type_char_after_range): added new test. ref [ruby-core:47115] [Backport #6853] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_3@37172 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_regexp.rb | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/ruby') diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb index 3c1662efba..b3c44f3d66 100644 --- a/test/ruby/test_regexp.rb +++ b/test/ruby/test_regexp.rb @@ -867,4 +867,14 @@ class TestRegexp < Test::Unit::TestCase assert_match(/invalid hex escape/, error.message) assert_equal(1, error.message.scan(/.*invalid .*escape.*/i).size, bug3539) end + + def test_raw_hyphen_and_type_char_after_range + bug6853 = '[ruby-core:47115]' + begin + verbose, $VERBOSE = $VERBOSE, nil + assert_match(/[0-1-\s]/, ' ', bug6853) + ensure + $VERBOSE = verbose + end + end end -- cgit v1.2.3