diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-09 21:44:19 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-09 21:44:19 +0000 |
commit | 08eb58d3dd6543a44c798aacc4385bf9f8bc005d (patch) | |
tree | ea01c61d89a34db40e21b9888d35ffe63d656754 /test/ruby/test_regexp.rb | |
parent | 9d8075b99cf131e0b2522bcf82a5b47e82d3882e (diff) |
* re.c (rb_reg_names): new method Regexp#names.
(rb_reg_named_captures): new method Regexp#named_captures
(match_regexp): new method MatchData#regexp.
(match_names): new method MatchData#names.
* lib/pp.rb (MatchData#pretty_print): show names of named captures.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14163 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby/test_regexp.rb')
-rw-r--r-- | test/ruby/test_regexp.rb | 29 |
1 files changed, 26 insertions, 3 deletions
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb index 26998c28d2..52b62f6421 100644 --- a/test/ruby/test_regexp.rb +++ b/test/ruby/test_regexp.rb @@ -2,7 +2,9 @@ require 'test/unit' class TestRegexp < Test::Unit::TestCase def test_ruby_dev_24643 - assert_nothing_raised("[ruby-dev:24643]") { /(?:(?:[a]*[a])?b)*a*$/ =~ "aabaaca" } + assert_nothing_raised("[ruby-dev:24643]") { + /(?:(?:[a]*[a])?b)*a*$/ =~ "aabaaca" + } end def test_ruby_talk_116455 @@ -58,7 +60,8 @@ class TestRegexp < Test::Unit::TestCase assert_equal(8, m.end(:foo)) assert_equal([5,8], m.offset(:foo)) - assert_equal("aaa [amp] yyy", "aaa & yyy".sub(/&(?<foo>.*?);/, '[\k<foo>]')) + assert_equal("aaa [amp] yyy", + "aaa & yyy".sub(/&(?<foo>.*?);/, '[\k<foo>]')) assert_equal('#<MatchData "& y" foo:"amp">', /&(?<foo>.*?); (y)/.match("aaa & yyy").inspect) @@ -72,9 +75,29 @@ class TestRegexp < Test::Unit::TestCase /(?<id>[A-Za-z_]+)/ =~ "!abc" assert_equal("abc", Regexp.last_match(:id)) - /a/ =~ "b" + /a/ =~ "b" # doesn't match. assert_equal(nil, Regexp.last_match) assert_equal(nil, Regexp.last_match(1)) assert_equal(nil, Regexp.last_match(:foo)) + + assert_equal(["foo", "bar"], /(?<foo>.)(?<bar>.)/.names) + assert_equal(["foo"], /(?<foo>.)(?<foo>.)/.names) + assert_equal([], /(.)(.)/.names) + + assert_equal(["foo", "bar"], /(?<foo>.)(?<bar>.)/.match("ab").names) + assert_equal(["foo"], /(?<foo>.)(?<foo>.)/.match("ab").names) + assert_equal([], /(.)(.)/.match("ab").names) + + assert_equal({"foo"=>[1], "bar"=>[2]}, + /(?<foo>.)(?<bar>.)/.named_captures) + assert_equal({"foo"=>[1, 2]}, + /(?<foo>.)(?<foo>.)/.named_captures) + assert_equal({}, /(.)(.)/.named_captures) + end + + def test_match_regexp + r = /./ + m = r.match("a") + assert_equal(r, m.regexp) end end |