spaCy/tests/parser/test_space_attachment.py
2015-10-15 03:24:57 +11:00

13 lines
297 B
Python

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)
for sent in doc.sents:
if len(sent) == 1:
assert not sent[-1].is_space