spaCy/tests/parser/test_space_attachment.py

12 lines
266 B
Python
Raw Normal View History

from __future__ import unicode_literals
import pytest
@pytest.mark.models
def test_space_attachment(EN):
sentence = 'This is a test.\nTo ensure spaces are attached well.'
doc = EN(sentence)
2015-10-14 16:20:51 +00:00
for sent in doc.sents:
assert not sent[-1].is_space