mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
e2b70df012
* Use isort with Black profile * isort all the things * Fix import cycles as a result of import sorting * Add DOCBIN_ALL_ATTRS type definition * Add isort to requirements * Remove isort from build dependencies check * Typo
37 lines
804 B
Python
37 lines
804 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())
|