mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
b35b33c751
* test/iconv/test_partial.rb: renamed from test_simple.rb. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
31 lines
835 B
Ruby
31 lines
835 B
Ruby
require File.join(File.dirname(__FILE__), "utils.rb")
|
|
|
|
class TestIconv
|
|
def test_ignore_option
|
|
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
|
|
str = iconv.iconv(EUCJ_STR)
|
|
str << iconv.iconv(nil)
|
|
assert_equal(SJIS_STR, str)
|
|
iconv.close
|
|
|
|
iconv = Iconv.new('SHIFT_JIS//IGNORE', 'EUC-JP//ignore')
|
|
str = iconv.iconv(EUCJ_STR)
|
|
str << iconv.iconv(nil)
|
|
assert_equal(SJIS_STR, str)
|
|
iconv.close
|
|
end
|
|
|
|
def test_translit_option
|
|
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
|
|
str = iconv.iconv(EUCJ_STR)
|
|
str << iconv.iconv(nil)
|
|
assert_equal(SJIS_STR, str)
|
|
iconv.close
|
|
|
|
iconv = Iconv.new('SHIFT_JIS//TRANSLIT', 'EUC-JP//translit//ignore')
|
|
str = iconv.iconv(EUCJ_STR)
|
|
str << iconv.iconv(nil)
|
|
assert_equal(SJIS_STR, str)
|
|
iconv.close
|
|
end
|
|
end if defined?(::Iconv)
|