mirror of
https://github.com/rspeer/wordfreq.git
synced 2024-12-23 17:31:41 +00:00
added arabic tests
This commit is contained in:
parent
9aa773aa2b
commit
f83d31a357
@ -137,3 +137,14 @@ def test_not_really_random():
|
|||||||
@raises(ValueError)
|
@raises(ValueError)
|
||||||
def test_not_enough_ascii():
|
def test_not_enough_ascii():
|
||||||
random_ascii_words(lang='zh')
|
random_ascii_words(lang='zh')
|
||||||
|
|
||||||
|
def test_ar():
|
||||||
|
eq_(
|
||||||
|
tokenize('متــــــــعب', 'ar'),
|
||||||
|
['متعب']
|
||||||
|
)
|
||||||
|
|
||||||
|
eq_(
|
||||||
|
tokenize('حَرَكَات', 'ar'),
|
||||||
|
['حركات']
|
||||||
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user