mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
19 lines
401 B
Python
19 lines
401 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"string,lemma",
|
|
[
|
|
("câini", "câine"),
|
|
("expedițiilor", "expediție"),
|
|
("pensete", "pensetă"),
|
|
("erau", "fi"),
|
|
],
|
|
)
|
|
def test_ro_lemmatizer_lookup_assigns(ro_tokenizer, string, lemma):
|
|
tokens = ro_tokenizer(string)
|
|
assert tokens[0].lemma_ == lemma
|