mirror of
https://github.com/ruby/ruby.git
synced 2025-09-17 09:33:59 +02:00
merge revision(s) 28307:
* enc/trans/utf8_mac.trans (buf_apply): fix for patterns whose result is 2 bytes. [ruby-core:30751] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_9_2@28308 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
b27ec368b3
commit
1b5c41b460
4 changed files with 17 additions and 10 deletions
|
@ -892,12 +892,4 @@ class TestEncodingConverter < Test::Unit::TestCase
|
|||
"".encode("euc-jp", :undef => :replace, :replace => broken)
|
||||
}
|
||||
end
|
||||
|
||||
def test_utf8_mac
|
||||
assert_equal("\u{fb4d}", "\u05DB\u05BF".encode("UTF-8", "UTF8-MAC"))
|
||||
assert_equal("\u{1ff7}", "\u03C9\u0345\u0342".encode("UTF-8", "UTF8-MAC"))
|
||||
|
||||
assert_equal("\u05DB\u05BF", "\u{fb4d}".encode("UTF8-MAC").force_encoding("UTF-8"))
|
||||
assert_equal("\u03C9\u0345\u0342", "\u{1ff7}".encode("UTF8-MAC").force_encoding("UTF-8"))
|
||||
end
|
||||
end
|
||||
|
|
|
@ -1912,6 +1912,16 @@ class TestTranscode < Test::Unit::TestCase
|
|||
assert_equal(Encoding::Shift_JIS, b.encoding)
|
||||
end
|
||||
|
||||
def test_utf8_mac
|
||||
assert_equal("\u{fb4d}", "\u05DB\u05BF".encode("UTF-8", "UTF8-MAC"))
|
||||
assert_equal("\u{1ff7}", "\u03C9\u0345\u0342".encode("UTF-8", "UTF8-MAC"))
|
||||
|
||||
assert_equal("\u05DB\u05BF", "\u{fb4d}".encode("UTF8-MAC").force_encoding("UTF-8"))
|
||||
assert_equal("\u03C9\u0345\u0342", "\u{1ff7}".encode("UTF8-MAC").force_encoding("UTF-8"))
|
||||
|
||||
check_both_ways("\u{e9 74 e8}", "e\u0301te\u0300", 'UTF8-MAC')
|
||||
end
|
||||
|
||||
def test_fallback
|
||||
assert_equal("\u3042".encode("EUC-JP"), "\u{20000}".encode("EUC-JP",
|
||||
fallback: {"\u{20000}" => "\u3042".encode("EUC-JP")}))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue