mirror of
https://github.com/explosion/spaCy.git
synced 2025-10-04 19:07:02 +03:00
10 lines
276 B
Python
10 lines
276 B
Python
import pytest
|
|
|
|
@pytest.mark.xfail
|
|
@pytest.mark.models('en')
|
|
def test_issue1305(EN):
|
|
'''Test lemmatization of English VBZ'''
|
|
assert EN.vocab.morphology.lemmatizer('works', 'verb') == set(['work'])
|
|
doc = EN(u'This app works well')
|
|
assert doc[2].lemma_ == 'work'
|