summaryrefslogtreecommitdiff
path: root/test/ruby/test_string.rb
diff options
context:
space:
mode:
authorMartin Dürst <[email protected]>2022-03-12 21:33:51 +0900
committerMartin Dürst <[email protected]>2022-03-13 09:19:52 +0900
commit8f59482f5d1f77542fe3c8e8434cb1dbbc764ecf (patch)
tree819745dd4235565ac9340d0567cdff4ddbc53d01 /test/ruby/test_string.rb
parent9b545b0caf2ccc89718ba02ff631d2a68b96a831 (diff)
add some tests for Unicode Version 14.0.0
Diffstat (limited to 'test/ruby/test_string.rb')
-rw-r--r--test/ruby/test_string.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_string.rb b/test/ruby/test_string.rb
index 0e2a484478..1d0a68038a 100644
--- a/test/ruby/test_string.rb
+++ b/test/ruby/test_string.rb
@@ -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!