diff options
| author | Martin Dürst <duerst@it.aoyama.ac.jp> | 2025-10-27 21:22:50 +0900 |
|---|---|---|
| committer | Martin Dürst <duerst@it.aoyama.ac.jp> | 2025-11-02 09:27:54 +0900 |
| commit | 83a943b5948efbe5a2a6de9fa425482c51e536fb (patch) | |
| tree | d7d480580788ce6b1660a7e63826746f5f286c8d | |
| parent | a122d7a58e91ed6cd531e906cb398688d7cc8b17 (diff) | |
Add test for Unicode normalization of Gurung Khema.
| -rw-r--r-- | test/test_unicode_normalize.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/test_unicode_normalize.rb b/test/test_unicode_normalize.rb index 120ff01cd4..dd06d27131 100644 --- a/test/test_unicode_normalize.rb +++ b/test/test_unicode_normalize.rb @@ -215,6 +215,10 @@ class TestUnicodeNormalize assert_equal str.unicode_normalize(:nfd), str.unicode_normalize(:nfc).unicode_normalize(:nfd) end + def test_gurung_khema + assert_equal "\u{16121 16121 16121 16121 16121 1611E}", "\u{1611E 16121 16121 16121 16121 16121}".unicode_normalize + end + def test_canonical_ordering a = "\u03B1\u0313\u0300\u0345" a_unordered1 = "\u03B1\u0345\u0313\u0300" |
