f877c37fc6
tests / Test (macos-latest, 3.14) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.10) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.13) (push) Has been cancelled
tests / Test (windows-latest, 3.14) (push) Has been cancelled
tests / Validate (push) Has been cancelled
tests / Test (macos-latest, 3.10) (push) Has been cancelled
tests / Test (macos-latest, 3.11) (push) Has been cancelled
tests / Test (macos-latest, 3.12) (push) Has been cancelled
tests / Test (macos-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.12) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.13) (push) Has been cancelled
tests / Test (ubuntu-latest, 3.14) (push) Has been cancelled
tests / Test (windows-latest, 3.10) (push) Has been cancelled
tests / Test (windows-latest, 3.11) (push) Has been cancelled
tests / Test (windows-latest, 3.12) (push) Has been cancelled
universe validation / Validate (push) Has been cancelled
21 lines
621 B
Python
21 lines
621 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 == "ق.م"
|
|
|
|
|
|
def test_ar_tokenizer_handles_exc_in_text_2(ar_tokenizer):
|
|
text = "يبلغ طول مضيق طارق 14كم "
|
|
tokens = ar_tokenizer(text)
|
|
assert len(tokens) == 6
|