2014-12-21 12:58:21 +03:00
|
|
|
from spacy.en import English
|
2014-12-19 19:51:25 +03:00
|
|
|
import pytest
|
|
|
|
|
2014-12-23 03:40:32 +03:00
|
|
|
|
2014-12-21 12:58:21 +03:00
|
|
|
@pytest.fixture
|
|
|
|
def EN():
|
2014-12-30 13:34:09 +03:00
|
|
|
return English()
|
2014-12-19 19:51:25 +03:00
|
|
|
|
|
|
|
@pytest.fixture
|
2014-12-21 12:58:21 +03:00
|
|
|
def tagged(EN):
|
2014-12-19 19:51:25 +03:00
|
|
|
string = u'Bananas in pyjamas are geese.'
|
2014-12-23 03:40:32 +03:00
|
|
|
tokens = EN(string, tag=True)
|
2014-12-19 19:51:25 +03:00
|
|
|
return tokens
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def lemmas(tagged):
|
|
|
|
return [t.lemma for t in tagged]
|
|
|
|
|
|
|
|
|
2015-01-03 15:41:16 +03:00
|
|
|
def test_lemmas(lemmas, tagged):
|
2014-12-19 19:51:25 +03:00
|
|
|
assert lemmas[0] == 'banana'
|
|
|
|
assert lemmas[1] == 'in'
|
|
|
|
assert lemmas[2] == 'pyjama'
|
|
|
|
assert lemmas[3] == 'be'
|
2015-01-03 17:16:18 +03:00
|
|
|
if tagged[2].fine_pos == tagged[4].fine_pos:
|
|
|
|
assert lemmas[4] == 'goose'
|