aboutsummaryrefslogtreecommitdiffstats
path: root/test/iconv/utils.rb
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-05 04:58:41 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-05 04:58:41 +0000
commitb35b33c7516d398e9e93e3e8309b9e5bb29a5267 (patch)
treec79154a9ac43b992b96f33ddffdaac21274d3be2 /test/iconv/utils.rb
parent28c5fe3c6cc1a55507916bcc0f777dc83e208b30 (diff)
downloadruby-b35b33c7516d398e9e93e3e8309b9e5bb29a5267.tar.gz
* test/iconv/test_{basic,option}.rb, test/iconv/utils.rb: added.
* 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
Diffstat (limited to 'test/iconv/utils.rb')
-rw-r--r--test/iconv/utils.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/iconv/utils.rb b/test/iconv/utils.rb
new file mode 100644
index 0000000000..032ac28ea4
--- /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)