mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/iconv/test_option.rb (test_ignore_option): skip if iconv
doesn't have transliterate. * test/iconv/test_option.rb (test_translit_option): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18745 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b9e3f3c129
commit
0cae739f2d
2 changed files with 19 additions and 2 deletions
|
@ -1,3 +1,10 @@
|
|||
Thu Aug 21 07:59:04 2008 NARUSE, Yui <naruse@ruby-lang.org>
|
||||
|
||||
* test/iconv/test_option.rb (test_ignore_option): skip if iconv
|
||||
doesn't have transliterate.
|
||||
|
||||
* test/iconv/test_option.rb (test_translit_option): ditto.
|
||||
|
||||
Thu Aug 21 06:12:56 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/scanf.rb (Scanf::FormatSpecifier#initialize): %i should accept
|
||||
|
|
|
@ -2,7 +2,12 @@ require File.join(File.dirname(__FILE__), "utils.rb")
|
|||
|
||||
class TestIconv::Option < TestIconv
|
||||
def test_ignore_option
|
||||
return unless Iconv.method_defined? :transliterate?
|
||||
begin
|
||||
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP')
|
||||
iconv.transliterate?
|
||||
rescue NotImplementedError
|
||||
return
|
||||
end
|
||||
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
|
||||
str = iconv.iconv(EUCJ_STR)
|
||||
str << iconv.iconv(nil)
|
||||
|
@ -17,7 +22,12 @@ class TestIconv::Option < TestIconv
|
|||
end
|
||||
|
||||
def test_translit_option
|
||||
return unless Iconv.method_defined? :transliterate?
|
||||
begin
|
||||
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP')
|
||||
iconv.transliterate?
|
||||
rescue NotImplementedError
|
||||
return
|
||||
end
|
||||
iconv = Iconv.new('SHIFT_JIS', 'EUC-JP//ignore')
|
||||
str = iconv.iconv(EUCJ_STR)
|
||||
str << iconv.iconv(nil)
|
||||
|
|
Loading…
Reference in a new issue