spaCy/spacy/tests/lang/sv/test_lex_attrs.py
Daniël de Kok e2b70df012
Configure isort to use the Black profile, recursively isort the spacy module (#12721)
* 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
2023-06-14 17:48:41 +02:00

32 lines
684 B
Python

import pytest
from spacy.lang.sv.lex_attrs import like_num
@pytest.mark.parametrize(
"text,match",
[
("10", True),
("1", True),
("10.000", True),
("10.00", True),
("999,0", True),
("en", True),
("två", True),
("miljard", True),
("hund", False),
(",", False),
("1/2", True),
],
)
def test_lex_attrs_like_number(sv_tokenizer, text, match):
tokens = sv_tokenizer(text)
assert len(tokens) == 1
assert tokens[0].like_num == match
@pytest.mark.parametrize("word", ["elva"])
def test_sv_lex_attrs_capitals(word):
assert like_num(word)
assert like_num(word.upper())