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

10 lines
211 B
Python
Raw Normal View History

import pytest
2023-06-26 12:41:03 +03:00
from spacy.lang.hy.lex_attrs import like_num
@pytest.mark.parametrize("word", ["հիսուն"])
def test_hy_lex_attrs_capitals(word):
assert like_num(word)
assert like_num(word.upper())