spaCy/spacy/tests/regression/test_issue1207.py
Motoki Wu b818afaa0e Added failing test for Issue #1207.
The noun chunk iterator should work for `Doc` but not for `Span`.
2017-11-17 17:04:27 -08:00

14 lines
395 B
Python

from __future__ import unicode_literals
import pytest
@pytest.mark.models('en')
def test_issue1207(EN):
text = 'Employees are recruiting talented staffers from overseas.'
doc = EN(text)
assert [i.text for i in doc.noun_chunks] == ['Employees', 'talented staffers']
sent = list(doc.sents)[0]
assert [i.text for i in sent.noun_chunks] == ['Employees', 'talented staffers']