mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
21 lines
531 B
Python
21 lines
531 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize(
|
|
"string,lemma",
|
|
[
|
|
("DNA-profilernas", "DNA-profil"),
|
|
("Elfenbenskustens", "Elfenbenskusten"),
|
|
("abortmotståndarens", "abortmotståndare"),
|
|
("kolesterols", "kolesterol"),
|
|
("portionssnusernas", "portionssnus"),
|
|
("åsyns", "åsyn"),
|
|
],
|
|
)
|
|
def test_lemmatizer_lookup_assigns(sv_tokenizer, string, lemma):
|
|
tokens = sv_tokenizer(string)
|
|
assert tokens[0].lemma_ == lemma
|