tests: fix expected results after Unicode 11 update
fixes https://github.com/fonttools/fonttools/issues/1291
This commit is contained in:
parent
0ae200f310
commit
a526b7170c
@ -75,7 +75,7 @@ def script_extension(char):
|
|||||||
|
|
||||||
>>> script_extension("a") == {'Latn'}
|
>>> script_extension("a") == {'Latn'}
|
||||||
True
|
True
|
||||||
>>> script_extension(unichr(0x060C)) == {'Arab', 'Syrc', 'Thaa'}
|
>>> script_extension(unichr(0x060C)) == {'Arab', 'Rohg', 'Syrc', 'Thaa'}
|
||||||
True
|
True
|
||||||
>>> script_extension(unichr(0x10FFFF)) == {'Zzzz'}
|
>>> script_extension(unichr(0x10FFFF)) == {'Zzzz'}
|
||||||
True
|
True
|
||||||
|
@ -165,8 +165,9 @@ def test_script_extension():
|
|||||||
|
|
||||||
assert unicodedata.script_extension("\u0660") == {'Arab', 'Thaa'}
|
assert unicodedata.script_extension("\u0660") == {'Arab', 'Thaa'}
|
||||||
assert unicodedata.script_extension("\u0964") == {
|
assert unicodedata.script_extension("\u0964") == {
|
||||||
'Beng', 'Deva', 'Gran', 'Gujr', 'Guru', 'Knda', 'Mahj', 'Mlym',
|
'Beng', 'Deva', 'Dogr', 'Gong', 'Gran', 'Gujr', 'Guru', 'Knda',
|
||||||
'Orya', 'Sind', 'Sinh', 'Sylo', 'Takr', 'Taml', 'Telu', 'Tirh'}
|
'Mahj', 'Mlym', 'Orya', 'Sind', 'Sinh', 'Sylo', 'Takr', 'Taml',
|
||||||
|
'Telu', 'Tirh'}
|
||||||
|
|
||||||
|
|
||||||
def test_script_name():
|
def test_script_name():
|
||||||
@ -200,7 +201,8 @@ def test_block():
|
|||||||
assert unicodedata.block("\x00") == "Basic Latin"
|
assert unicodedata.block("\x00") == "Basic Latin"
|
||||||
assert unicodedata.block("\x7F") == "Basic Latin"
|
assert unicodedata.block("\x7F") == "Basic Latin"
|
||||||
assert unicodedata.block("\x80") == "Latin-1 Supplement"
|
assert unicodedata.block("\x80") == "Latin-1 Supplement"
|
||||||
assert unicodedata.block("\u1c90") == "No_Block"
|
assert unicodedata.block("\u1c90") == "Georgian Extended"
|
||||||
|
assert unicodedata.block("\u0870") == "No_Block"
|
||||||
|
|
||||||
|
|
||||||
def test_ot_tags_from_script():
|
def test_ot_tags_from_script():
|
||||||
|
Loading…
x
Reference in New Issue
Block a user