mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-28 10:56:31 +03:00
beef184e53
* add Armenian language and test cases * agreement submission
11 lines
251 B
Python
11 lines
251 B
Python
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
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())
|