aboutsummaryrefslogtreecommitdiffstats
path: root/test/iconv/test_basic.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_basic.rb
parent6d5e291f7d25ae0f9b53ff7b94e09610fb55ccc7 (diff)
downloadruby-76fc93643275b55d147f9fc685ccb7c60e72e992.tar.gz
* 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_basic.rb')
-rw-r--r--test/iconv/test_basic.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/iconv/test_basic.rb b/test/iconv/test_basic.rb
index 12f30e4a0e..ea564e91f1 100644
--- a/test/iconv/test_basic.rb
+++ b/test/iconv/test_basic.rb
@@ -1,6 +1,6 @@
require File.join(File.dirname(__FILE__), "utils.rb")
-TestIconv.testcase(:Basic) do
+class TestIconv::Basic < TestIconv
def test_euc2sjis
iconv = Iconv.open('SHIFT_JIS', 'EUC-JP')
str = iconv.iconv(EUCJ_STR)
@@ -46,4 +46,4 @@ TestIconv.testcase(:Basic) do
def test_unknown_encoding
assert_raise(Iconv::InvalidEncoding) { Iconv.iconv("utf-8", "X-UKNOWN", "heh") }
end
-end
+end if defined?(TestIconv)