mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
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())
|