mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add a test for a problem of [ruby-talk:116455]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1bc4363c5e
commit
7dc3169658
1 changed files with 5 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue