mirror of https://github.com/explosion/spaCy.git
12 lines
277 B
Python
12 lines
277 B
Python
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import pytest
|
||
|
from spacy.lang.ru.lex_attrs import like_num
|
||
|
|
||
|
|
||
|
@pytest.mark.parametrize('word', ['одиннадцать'])
|
||
|
def test_ru_lex_attrs_capitals(word):
|
||
|
assert like_num(word)
|
||
|
assert like_num(word.upper())
|