From ad934a9abd973141434a12eb346a339d876b5baf Mon Sep 17 00:00:00 2001 From: ines Date: Sat, 18 Mar 2017 16:12:30 +0100 Subject: [PATCH] Add regression test for #693 --- spacy/tests/regression/test_issue693.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 spacy/tests/regression/test_issue693.py diff --git a/spacy/tests/regression/test_issue693.py b/spacy/tests/regression/test_issue693.py new file mode 100644 index 000000000..00ba23331 --- /dev/null +++ b/spacy/tests/regression/test_issue693.py @@ -0,0 +1,19 @@ +# coding: utf8 +from __future__ import unicode_literals + +import pytest + + +@pytest.mark.xfail +@pytest.mark.models +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