Add test for 1305: Incorrect lemmatization of VBZ for English

This commit is contained in:
Matthew Honnibal 2017-09-06 18:40:18 +02:00
parent 33fa91feb7
commit 5384fff5ce

View File

@ -0,0 +1,8 @@
import pytest
@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'