diff options
Diffstat (limited to 'test/ruby')
| -rw-r--r-- | test/ruby/test_string.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb index 290f53634..27360e76c 100644 --- a/test/ruby/test_string.rb +++ b/test/ruby/test_string.rb @@ -1602,6 +1602,17 @@ class TestString < Test::Unit::TestCase assert_equal(24, count, "[ruby-dev:39361]") end + def test_upto_nonalnum + first = S("\u3041") + last = S("\u3093") + count = 0 + assert_equal(first, first.upto(last) {|s| + count += 1 + s.replace(last) + }) + assert_equal(83, count, "[ruby-dev:39626]") + end + def test_mod_check assert_raise(RuntimeError) { s = "" |
