From 0744c0903fd6fe0adb85140d63ed63062625360a Mon Sep 17 00:00:00 2001 From: naruse Date: Mon, 1 Sep 2008 05:25:18 +0000 Subject: * test/ruby/test_transcode.rb (test_windows_31j): added. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19013 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_transcode.rb | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'test/ruby/test_transcode.rb') diff --git a/test/ruby/test_transcode.rb b/test/ruby/test_transcode.rb index d9728a287..6f578f875 100644 --- a/test/ruby/test_transcode.rb +++ b/test/ruby/test_transcode.rb @@ -365,6 +365,14 @@ class TestTranscode < Test::Unit::TestCase check_both_ways("\u795E\u6797\u7FA9\u535A", "\x90\x5F\x97\xD1\x8B\x60\x94\x8E", 'shift_jis') # 神林義博 end + def test_windows_31j + check_both_ways("\u222A", "\x81\xBE", 'Windows-31J') # Union + check_both_ways("\uFFE2", "\x81\xCA", 'Windows-31J') # Fullwidth Not Sign + check_both_ways("\u2235", "\x81\xE6", 'Windows-31J') # Because + check_both_ways("\u2160", "\x87\x54", 'Windows-31J') # Roman Numeral One + check_both_ways("\u2170", "\xFA\x40", 'Windows-31J') # Small Roman Numeral One + end + def test_euc_jp check_both_ways("\u3000", "\xA1\xA1", 'euc-jp') # full-width space check_both_ways("\u00D7", "\xA1\xDF", 'euc-jp') # × -- cgit