mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
b818afaa0e
The noun chunk iterator should work for `Doc` but not for `Span`.
14 lines
395 B
Python
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']
|