From fc186659c387ca3362a6e8399872f09ebec497ff Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 4 Jan 2016 07:59:55 +0000 Subject: Revert r53431 "temporally revert r53411 to debug" git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53434 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ripper/test_ripper.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'test/ripper') diff --git a/test/ripper/test_ripper.rb b/test/ripper/test_ripper.rb index c6af72d475..7631b91042 100644 --- a/test/ripper/test_ripper.rb +++ b/test/ripper/test_ripper.rb @@ -60,4 +60,16 @@ class TestRipper::Ripper < Test::Unit::TestCase assert_predicate @ripper, :yydebug end + + def test_regexp_with_option + bug11932 = '[ruby-core:72638] [Bug #11932]' + src = '/[\xC0-\xF0]/u'.force_encoding(Encoding::UTF_8) + ripper = Ripper.new(src) + ripper.parse + assert_predicate(ripper, :error?) + src = '/[\xC0-\xF0]/n'.force_encoding(Encoding::UTF_8) + ripper = Ripper.new(src) + ripper.parse + assert_not_predicate(ripper, :error?, bug11932) + end end if ripper_test -- cgit v1.2.3