mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
add a test.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15139 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f909b891ba
commit
3106b96ac8
1 changed files with 4 additions and 0 deletions
|
@ -297,6 +297,10 @@ class TestM17N < Test::Unit::TestCase
|
|||
end
|
||||
|
||||
def test_utf16
|
||||
s1 = "aa".force_encoding("utf-16be")
|
||||
s2 = "z".force_encoding("us-ascii")
|
||||
assert_nil(Encoding.compatible?(s1, s2), "Encoding.compatible?(#{encdump s1}, #{encdump s2})")
|
||||
|
||||
s1 = "ab".force_encoding("utf-16be")
|
||||
s2 = "b".force_encoding("utf-16be")
|
||||
assert_equal(false, s1.end_with?(s2), "#{encdump s1}.end_with?(#{encdump s2})")
|
||||
|
|
Loading…
Reference in a new issue