diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-05 04:58:41 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-05 04:58:41 +0000 |
| commit | a340474a8050d2b9c46f2cb9352b86e75bcd0843 (patch) | |
| tree | c79154a9ac43b992b96f33ddffdaac21274d3be2 /test/iconv/utils.rb | |
| parent | f3791d5209dd49c2951b9a9d28f94c44c9517386 (diff) | |
| download | ruby-a340474a8050d2b9c46f2cb9352b86e75bcd0843.tar.gz ruby-a340474a8050d2b9c46f2cb9352b86e75bcd0843.tar.xz ruby-a340474a8050d2b9c46f2cb9352b86e75bcd0843.zip | |
* test/iconv/test_{basic,option}.rb, test/iconv/utils.rb: added.
* test/iconv/test_partial.rb: renamed from test_simple.rb.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16833 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/iconv/utils.rb')
| -rw-r--r-- | test/iconv/utils.rb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/test/iconv/utils.rb b/test/iconv/utils.rb new file mode 100644 index 000000000..032ac28ea --- /dev/null +++ b/test/iconv/utils.rb @@ -0,0 +1,22 @@ +begin + require 'iconv' +rescue LoadError +else + require 'test/unit' +end + +class TestIconv < Test::Unit::TestCase + if defined?(::Encoding) and String.method_defined?(:force_encoding) + def self.encode(str, enc) + str.force_encoding(enc) + end + else + def self.encode(str, enc) + str + end + 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 +end if defined?(::Iconv) |
