summaryrefslogtreecommitdiffstats
path: root/test/ruby
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-29 23:22:57 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-10-29 23:22:57 +0000
commitf7c4200dd67e12ba265600c3225c1e529afc52a7 (patch)
treec1bce9543c7e214864f8299448f9e2838ea6663c /test/ruby
parent97442d30a54b5755176f865d4d67255e6225b235 (diff)
downloadruby-f7c4200dd67e12ba265600c3225c1e529afc52a7.tar.gz
ruby-f7c4200dd67e12ba265600c3225c1e529afc52a7.tar.xz
ruby-f7c4200dd67e12ba265600c3225c1e529afc52a7.zip
add a test for a problem of [ruby-talk:116455]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_regexp.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/ruby/test_regexp.rb b/test/ruby/test_regexp.rb
index ea78abdc4..217177375 100644
--- a/test/ruby/test_regexp.rb
+++ b/test/ruby/test_regexp.rb
@@ -1,7 +1,11 @@
require 'test/unit'
class TestRegexp < Test::Unit::TestCase
- def test_undefined_bytecode_bug
+ def test_ruby_dev_24643
assert_nothing_raised("[ruby-dev:24643]") { /(?:(?:[a]*[a])?b)*a*$/ =~ "aabaaca" }
end
+
+ def test_ruby_talk_116455
+ assert_match(/^(\w{2,}).* ([A-Za-z\xa2\xc0-\xff]{2,}?)$/, "Hallo Welt")
+ end
end