spaCy/spacy/tests/regression/test_issue1612.py
2017-11-20 12:05:35 -06:00

13 lines
225 B
Python

from __future__ import unicode_literals
import pytest
from ...lang.en import English
def test_issue1612():
nlp = English()
doc = nlp('The black cat purrs.')
span = doc[1: 3]
assert span.orth_ == span.text