diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-06 09:25:46 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-06 09:25:46 +0000 |
commit | 4d0e7ebff913b8d60b65051a87d5238d2c61fe17 (patch) | |
tree | 9444741aaa4644e242d804f1dc6b4e26135b2311 /test/iconv | |
parent | ae94ac46028a21d3847d9676b8f5fdff977df276 (diff) | |
download | ruby-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')
-rw-r--r-- | test/iconv/test_basic.rb | 4 | ||||
-rw-r--r-- | test/iconv/test_option.rb | 4 | ||||
-rw-r--r-- | test/iconv/test_partial.rb | 4 | ||||
-rw-r--r-- | test/iconv/utils.rb | 20 |
4 files changed, 11 insertions, 21 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) diff --git a/test/iconv/test_option.rb b/test/iconv/test_option.rb index f879dbaf6..a1f3457c3 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) diff --git a/test/iconv/test_partial.rb b/test/iconv/test_partial.rb index 8e973b6df..aa4d0ba25 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) diff --git a/test/iconv/utils.rb b/test/iconv/utils.rb index 99dce2083..bc75deb17 100644 --- a/test/iconv/utils.rb +++ b/test/iconv/utils.rb @@ -5,21 +5,7 @@ else require 'test/unit' end -module TestIconv - if defined?(::Iconv) - def self.testcase(name, &block) - const_set(name, klass = Class.new(::Test::Unit::TestCase)) - klass.name - klass.__send__(:include, self) - klass.class_eval(&block) - end - else - def self.testcase(name) - end - end -end - -module TestIconv +class TestIconv < ::Test::Unit::TestCase if defined?(::Encoding) and String.method_defined?(:force_encoding) def self.encode(str, enc) str.force_encoding(enc) @@ -30,6 +16,10 @@ module TestIconv end end + def default_test + self.class == TestIconv or super + end + ASCII = "ascii" EUCJ_STR = encode("\xa4\xa2\xa4\xa4\xa4\xa6\xa4\xa8\xa4\xaa", "EUC-JP").freeze SJIS_STR = encode("\x82\xa0\x82\xa2\x82\xa4\x82\xa6\x82\xa8", "Shift_JIS").freeze |