summaryrefslogtreecommitdiffstats
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
commit4d0e7ebff913b8d60b65051a87d5238d2c61fe17 (patch)
tree9444741aaa4644e242d804f1dc6b4e26135b2311 /test/iconv/test_basic.rb
parentae94ac46028a21d3847d9676b8f5fdff977df276 (diff)
downloadruby-4d0e7ebff913b8d60b65051a87d5238d2c61fe17.tar.gz
ruby-4d0e7ebff913b8d60b65051a87d5238d2c61fe17.tar.xz
ruby-4d0e7ebff913b8d60b65051a87d5238d2c61fe17.zip
* test/iconv/utils.rb (default_test): override not to croak.
git-svn-id: http://svn.ruby-lang.org/repos/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 12f30e4a0..ea564e91f 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)