(self)
| 68 | ) |
| 69 | |
| 70 | def test_ascii_letters(self): |
| 71 | for char in "".join(map(chr, range(ord("a"), ord("z")))): |
| 72 | name = "LATIN SMALL LETTER %s" % char.upper() |
| 73 | code = unicodedata.lookup(name) |
| 74 | self.assertEqual(unicodedata.name(code), name) |
| 75 | |
| 76 | def test_hangul_syllables(self): |
| 77 | self.checkletter("HANGUL SYLLABLE GA", "\uac00") |