summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-13 04:45:56 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-12-13 04:45:56 +0000
commitdd9ef48280ba08457e801e939b8ab7541a2870e8 (patch)
treed1a2dd581462cd13452666132e10bb915b53a0df /test
parent65b69d26b21e6a260e0672a0d8a1177ac01e74f6 (diff)
* test/ruby/test_m17n_comb.rb: feature changed in r20626.
follows it. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_1@20718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_m17n_comb.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/test/ruby/test_m17n_comb.rb b/test/ruby/test_m17n_comb.rb
index b5208f44f1..7d6794292b 100644
--- a/test/ruby/test_m17n_comb.rb
+++ b/test/ruby/test_m17n_comb.rb
@@ -1099,7 +1099,11 @@ class TestM17NComb < Test::Unit::TestCase
next
end
if !s1.ascii_only? && !s2.ascii_only? && s1.encoding != s2.encoding
- assert_raise(ArgumentError) { s1.scan(s2) }
+ if s1.valid_encoding?
+ assert_raise(Encoding::CompatibilityError) { s1.scan(s2) }
+ else
+ assert_raise(ArgumentError, /invalid byte sequence/) { s1.scan(s2) }
+ end
next
end
if !s1.valid_encoding?
@@ -1418,7 +1422,7 @@ class TestM17NComb < Test::Unit::TestCase
next
end
if !str_enc_compatible?(s1, s2)
- assert_raise(ArgumentError, desc) { doit.call }
+ assert_raise(Encoding::CompatibilityError, desc) { doit.call }
next
end
if !enccall(s1, :include?, s2)
@@ -1476,7 +1480,7 @@ class TestM17NComb < Test::Unit::TestCase
next
end
if !str_enc_compatible?(s1, s2)
- assert_raise(ArgumentError, desc) { doit.call }
+ assert_raise(Encoding::CompatibilityError, desc) { doit.call }
next
end
if !enccall(s1, :include?, s2)