зеркало из https://github.com/github/ruby.git
* 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
This commit is contained in:
Родитель
6d5e291f7d
Коммит
76fc936432
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Jun 6 18:25:43 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/iconv/utils.rb (default_test): override not to croak.
|
||||||
|
|
||||||
Fri Jun 6 16:41:45 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
Fri Jun 6 16:41:45 2008 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
* include/ruby/win32.h: include ws2tcpip.h. fixed [ruby-Bugs-20528]
|
* include/ruby/win32.h: include ws2tcpip.h. fixed [ruby-Bugs-20528]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require File.join(File.dirname(__FILE__), "utils.rb")
|
require File.join(File.dirname(__FILE__), "utils.rb")
|
||||||
|
|
||||||
TestIconv.testcase(:Basic) do
|
class TestIconv::Basic < TestIconv
|
||||||
def test_euc2sjis
|
def test_euc2sjis
|
||||||
iconv = Iconv.open('SHIFT_JIS', 'EUC-JP')
|
iconv = Iconv.open('SHIFT_JIS', 'EUC-JP')
|
||||||
str = iconv.iconv(EUCJ_STR)
|
str = iconv.iconv(EUCJ_STR)
|
||||||
|
@ -46,4 +46,4 @@ TestIconv.testcase(:Basic) do
|
||||||
def test_unknown_encoding
|
def test_unknown_encoding
|
||||||
assert_raise(Iconv::InvalidEncoding) { Iconv.iconv("utf-8", "X-UKNOWN", "heh") }
|
assert_raise(Iconv::InvalidEncoding) { Iconv.iconv("utf-8", "X-UKNOWN", "heh") }
|
||||||
end
|
end
|
||||||
end
|
end if defined?(TestIconv)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require File.join(File.dirname(__FILE__), "utils.rb")
|
require File.join(File.dirname(__FILE__), "utils.rb")
|
||||||
|
|
||||||
TestIconv.testcase(:Option) do
|
class TestIconv::Option < TestIconv
|
||||||
def test_ignore_option
|
def test_ignore_option
|
||||||
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
|
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
|
||||||
str = iconv.iconv(EUCJ_STR)
|
str = iconv.iconv(EUCJ_STR)
|
||||||
|
@ -28,4 +28,4 @@ TestIconv.testcase(:Option) do
|
||||||
assert_equal(SJIS_STR, str)
|
assert_equal(SJIS_STR, str)
|
||||||
iconv.close
|
iconv.close
|
||||||
end
|
end
|
||||||
end
|
end if defined?(TestIconv)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
require File.join(File.dirname(__FILE__), "utils.rb")
|
require File.join(File.dirname(__FILE__), "utils.rb")
|
||||||
|
|
||||||
TestIconv.testcase(:Partial) do
|
class TestIconv::Partial < TestIconv
|
||||||
def test_partial_ascii
|
def test_partial_ascii
|
||||||
c = Iconv.open(ASCII, ASCII)
|
c = Iconv.open(ASCII, ASCII)
|
||||||
ref = '[ruby-core:17092]'
|
ref = '[ruby-core:17092]'
|
||||||
|
@ -38,4 +38,4 @@ TestIconv.testcase(:Partial) do
|
||||||
ensure
|
ensure
|
||||||
c.close
|
c.close
|
||||||
end
|
end
|
||||||
end
|
end if defined?(TestIconv)
|
||||||
|
|
|
@ -5,21 +5,7 @@ else
|
||||||
require 'test/unit'
|
require 'test/unit'
|
||||||
end
|
end
|
||||||
|
|
||||||
module TestIconv
|
class TestIconv < ::Test::Unit::TestCase
|
||||||
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
|
|
||||||
if defined?(::Encoding) and String.method_defined?(:force_encoding)
|
if defined?(::Encoding) and String.method_defined?(:force_encoding)
|
||||||
def self.encode(str, enc)
|
def self.encode(str, enc)
|
||||||
str.force_encoding(enc)
|
str.force_encoding(enc)
|
||||||
|
@ -30,6 +16,10 @@ module TestIconv
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def default_test
|
||||||
|
self.class == TestIconv or super
|
||||||
|
end
|
||||||
|
|
||||||
ASCII = "ascii"
|
ASCII = "ascii"
|
||||||
EUCJ_STR = encode("\xa4\xa2\xa4\xa4\xa4\xa6\xa4\xa8\xa4\xaa", "EUC-JP").freeze
|
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
|
SJIS_STR = encode("\x82\xa0\x82\xa2\x82\xa4\x82\xa6\x82\xa8", "Shift_JIS").freeze
|
||||||
|
|
Загрузка…
Ссылка в новой задаче