spaCy/tests/spans/test_span.py
2015-06-07 18:02:24 +02:00

18 lines
370 B
Python

from __future__ import unicode_literals
import pytest
@pytest.fixture
def doc(en_nlp):
return en_nlp('This is a sentence. This is another sentence. And a third.')
def test_sent_spans(doc):
sents = list(doc.sents)
assert sents[0].start == 0
assert sents[0].end == 5
assert len(sents) == 3
assert sum(len(sent) for sent in sents) == len(doc)