add some tests for Unicode Version 14.0.0

This commit is contained in:
Martin Dürst 2022-03-12 21:33:51 +09:00
parent 9b545b0caf
commit 8f59482f5d
2 changed files with 6 additions and 0 deletions

View file

@ -2384,6 +2384,7 @@ CODE
assert_equal(S("HELLO"), S("HELLO").upcase)
assert_equal(S("ABC HELLO 123"), S("abc HELLO 123").upcase)
assert_equal(S("H\0""ELLO"), S("H\0""ello").upcase)
assert_equal(S("\u{10574}"), S("\u{1059B}").upcase)
end
def test_upcase!