summaryrefslogtreecommitdiff
path: root/test/iconv/test_option.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-06 09:25:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-06 09:25:46 +0000
commit76fc93643275b55d147f9fc685ccb7c60e72e992 (patch)
tree9444741aaa4644e242d804f1dc6b4e26135b2311 /test/iconv/test_option.rb
parent6d5e291f7d25ae0f9b53ff7b94e09610fb55ccc7 (diff)
* test/iconv/utils.rb (default_test): override not to croak.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16859 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/iconv/test_option.rb')
-rw-r--r--test/iconv/test_option.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/iconv/test_option.rb b/test/iconv/test_option.rb
index f879dbaf66..a1f3457c31 100644
--- a/test/iconv/test_option.rb
+++ b/test/iconv/test_option.rb
@@ -1,6 +1,6 @@
require File.join(File.dirname(__FILE__), "utils.rb")
-TestIconv.testcase(:Option) do
+class TestIconv::Option < TestIconv
def test_ignore_option
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
str = iconv.iconv(EUCJ_STR)
@@ -28,4 +28,4 @@ TestIconv.testcase(:Option) do
assert_equal(SJIS_STR, str)
iconv.close
end
-end
+end if defined?(TestIconv)