summaryrefslogtreecommitdiff
path: root/test/iconv/test_partial.rb
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-06 09:36:19 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-06 09:36:19 +0000
commit2cb931f2b270f10baeb1cadca9e1d31092f8529c (patch)
tree613c971e2bfba2c91db527dd5f9ddccf6c2de30c /test/iconv/test_partial.rb
parentcc59feecd374c1335669653b98585241d161b500 (diff)
* test/iconv: Tests fixed.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@16860 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/iconv/test_partial.rb')
-rw-r--r--test/iconv/test_partial.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/iconv/test_partial.rb b/test/iconv/test_partial.rb
index 8e973b6df9..aa4d0ba250 100644
--- a/test/iconv/test_partial.rb
+++ b/test/iconv/test_partial.rb
@@ -1,6 +1,6 @@
require File.join(File.dirname(__FILE__), "utils.rb")
-TestIconv.testcase(:Partial) do
+class TestIconv::Partial < TestIconv
def test_partial_ascii
c = Iconv.open(ASCII, ASCII)
ref = '[ruby-core:17092]'
@@ -38,4 +38,4 @@ TestIconv.testcase(:Partial) do
ensure
c.close
end
-end
+end if defined?(TestIconv)