mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-27 18:36:36 +03:00
db55577c45
* Remove unicode declarations * Remove Python 3.5 and 2.7 from CI * Don't require pathlib * Replace compat helpers * Remove OrderedDict * Use f-strings * Set Cython compiler language level * Fix typo * Re-add OrderedDict for Table * Update setup.cfg * Revert CONTRIBUTING.md * Revert lookups.md * Revert top-level.md * Small adjustments and docs [ci skip]
22 lines
676 B
Python
22 lines
676 B
Python
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize("text", ["ق.م", "إلخ", "ص.ب", "ت."])
|
|
def test_ar_tokenizer_handles_abbr(ar_tokenizer, text):
|
|
tokens = ar_tokenizer(text)
|
|
assert len(tokens) == 1
|
|
|
|
|
|
def test_ar_tokenizer_handles_exc_in_text(ar_tokenizer):
|
|
text = "تعود الكتابة الهيروغليفية إلى سنة 3200 ق.م"
|
|
tokens = ar_tokenizer(text)
|
|
assert len(tokens) == 7
|
|
assert tokens[6].text == "ق.م"
|
|
assert tokens[6].lemma_ == "قبل الميلاد"
|
|
|
|
|
|
def test_ar_tokenizer_handles_exc_in_text_2(ar_tokenizer):
|
|
text = "يبلغ طول مضيق طارق 14كم "
|
|
tokens = ar_tokenizer(text)
|
|
assert len(tokens) == 6
|