spaCy/tests/test_parse.py
2015-04-28 20:46:29 +02:00

12 lines
187 B
Python

from spacy.en import English
import pytest
NLP = English()
def test_root():
tokens = NLP(u"i don't have other assistance")
for t in tokens:
assert t.dep != 0, t.orth_