spaCy/tests/test_morph_exceptions.py
Matthew Honnibal 81d878beb2 * Upd tests
2014-12-30 21:34:09 +11:00

26 lines
529 B
Python

from __future__ import unicode_literals
from spacy.en import English
import pytest
from spacy.en import English
@pytest.fixture
def EN():
return English()
@pytest.fixture
def morph_exc():
return {
'PRP$': {'his': {'L': '-PRP-', 'person': 3, 'case': 2}},
}
def test_load_exc(EN, morph_exc):
EN.tagger.load_morph_exceptions(morph_exc)
tokens = EN('I like his style.', tag=True)
his = tokens[2]
assert EN.tagger.tag_names[his.fine_pos] == 'PRP$'
assert his.lemma == '-PRP-'