mirror of https://github.com/explosion/spaCy.git
12 lines
276 B
Python
12 lines
276 B
Python
|
# coding: utf-8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
import pytest
|
||
|
from spacy.lang.pt.lex_attrs import like_num
|
||
|
|
||
|
|
||
|
@pytest.mark.parametrize('word', ['onze', 'quadragésimo'])
|
||
|
def test_pt_lex_attrs_capitals(word):
|
||
|
assert like_num(word)
|
||
|
assert like_num(word.upper())
|