2017-03-18 18:12:30 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
|
2017-06-05 03:26:13 +03:00
|
|
|
@pytest.mark.xfail
|
2017-05-29 23:14:31 +03:00
|
|
|
@pytest.mark.models('en')
|
2017-03-18 18:12:30 +03:00
|
|
|
def test_issue693(EN):
|
|
|
|
"""Test that doc.noun_chunks parses the complete sentence."""
|
|
|
|
|
|
|
|
text1 = "the TopTown International Airport Board and the Goodwill Space Exploration Partnership."
|
|
|
|
text2 = "the Goodwill Space Exploration Partnership and the TopTown International Airport Board."
|
|
|
|
doc1 = EN(text1)
|
|
|
|
doc2 = EN(text2)
|
|
|
|
chunks1 = [chunk for chunk in doc1.noun_chunks]
|
|
|
|
chunks2 = [chunk for chunk in doc2.noun_chunks]
|
|
|
|
assert len(chunks1) == 2
|
|
|
|
assert len(chunks2) == 2
|