summaryrefslogtreecommitdiffstats
path: root/test/ruby/test_regexp.rb
blob: 217177375df5c05a6be6fee50ef06568dbf96d6f (plain)
1
2
3
4
5
6
7
8
9
10
11
require 'test/unit'

class TestRegexp < Test::Unit::TestCase
  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