From 1fe2fae259a113bd73fe55ab0853fcf220e41dfd Mon Sep 17 00:00:00 2001 From: yugui Date: Sun, 30 Nov 2008 09:04:51 +0000 Subject: [PATCH] * test/ruby/test_regexp.rb (TestRegexp#test_parse_curly_brace): now accepts quantifier on anchrs agian by r20391. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20398 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ test/ruby/test_regexp.rb | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index d855732e74..ac5aad2c09 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Nov 30 18:01:50 2008 Yuki Sonoda (Yugui) + + * test/ruby/test_regexp.rb (TestRegexp#test_parse_curly_brace): + now accepts quantifier on anchrs agian by r20391. + Sat Nov 29 23:56:44 2008 Yuki Sonoda (Yugui) * man/irb.1 (EXAMPLES): new section diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb index fdfef04b4d..d6441c9573 100644 --- a/test/ruby/test_regexp.rb +++ b/test/ruby/test_regexp.rb @@ -604,11 +604,13 @@ class TestRegexp < Test::Unit::TestCase check(/\Aa{0}+\z/, "", %w(a aa aab)) check(/\Aa{1}+\z/, %w(a aa), ["", "aab"]) check(/\Aa{1,2}b{1,2}\z/, %w(ab aab abb aabb), ["", "aaabb", "abbb"]) + check(/(?!x){0,1}/, [ ['', 'ab'], ['', ''] ]) + check(/c\z{0,1}/, [ ['c', 'abc'], ['c', 'cab']], ['abd']) + check(/\A{0,1}a/, [ ['a', 'abc'], ['a', '____abc']], ['bcd']) failcheck('.{100001}') failcheck('.{0,100001}') failcheck('.{1,0}') failcheck('{0}') - failcheck('(?!x){0,1}') end def test_parse_comment