mirror of
https://github.com/kovidgoyal/kitty.git
synced 2024-11-11 01:28:19 +03:00
23 lines
711 B
Python
23 lines
711 B
Python
#!/usr/bin/env python3
|
|
# License: GPL v3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
from . import BaseTest
|
|
|
|
|
|
class TestUnicodeInput(BaseTest):
|
|
|
|
def test_word_trie(self):
|
|
from kittens.unicode_input.unicode_names import codepoints_for_word
|
|
|
|
def matches(a, *words):
|
|
ans = codepoints_for_word(a)
|
|
for w in words:
|
|
ans &= codepoints_for_word(w)
|
|
return set(ans)
|
|
|
|
self.ae(matches('horiz', 'ell'), {0x2026, 0x22ef, 0x2b2c, 0x2b2d, 0xfe19})
|
|
self.ae(matches('horizontal', 'ell'), {0x2026, 0x22ef, 0x2b2c, 0x2b2d, 0xfe19})
|
|
self.assertFalse(matches('sfgsfgsfgfgsdg'))
|
|
self.assertIn(0x1f41d, matches('bee'))
|