spaCy/spacy/tests/lang/pl/test_text.py

24 lines
522 B
Python
Raw Normal View History

"""Words like numbers are recognized correctly."""
import pytest
2019-08-20 18:36:34 +03:00
@pytest.mark.parametrize(
"text,match",
[
("10", True),
("1", True),
("10,000", True),
("10,00", True),
("jeden", True),
("dwa", True),
("milion", True),
("pies", False),
(",", False),
("1/2", True),
],
)
def test_lex_attrs_like_number(pl_tokenizer, text, match):
tokens = pl_tokenizer(text)
assert len(tokens) == 1
assert tokens[0].like_num == match