Added failing test for Issue #1207.

The noun chunk iterator should work for `Doc` but not for `Span`.
This commit is contained in:
Motoki Wu 2017-11-17 17:04:27 -08:00
parent c3051e95f7
commit b818afaa0e

View File

@ -0,0 +1,13 @@
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']