mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
71884d0942
Co-authored-by: explosion-bot <explosion-bot@users.noreply.github.com>
36 lines
803 B
Python
36 lines
803 B
Python
import pytest
|
|
from spacy.lang.la.lex_attrs import like_num
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"text,match",
|
|
[
|
|
("IIII", True),
|
|
("VI", True),
|
|
("vi", True),
|
|
("IV", True),
|
|
("iv", True),
|
|
("IX", True),
|
|
("ix", True),
|
|
("MMXXII", True),
|
|
("0", True),
|
|
("1", True),
|
|
("quattuor", True),
|
|
("decem", True),
|
|
("tertius", True),
|
|
("canis", False),
|
|
("MMXX11", False),
|
|
(",", False),
|
|
],
|
|
)
|
|
def test_lex_attrs_like_number(la_tokenizer, text, match):
|
|
tokens = la_tokenizer(text)
|
|
assert len(tokens) == 1
|
|
assert tokens[0].like_num == match
|
|
|
|
|
|
@pytest.mark.parametrize("word", ["quinque"])
|
|
def test_la_lex_attrs_capitals(word):
|
|
assert like_num(word)
|
|
assert like_num(word.upper())
|