mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-13 10:46:29 +03:00
* Add test for parse tree navigation
This commit is contained in:
parent
ef2493a3bd
commit
0b53fd7daa
28
tests/test_parse_navigate.py
Normal file
28
tests/test_parse_navigate.py
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
from os import path
|
||||||
|
import codecs
|
||||||
|
|
||||||
|
from spacy.en import English
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def sun_text():
|
||||||
|
with codecs.open(path.join(path.dirname(__file__), 'sun.txt'), 'r', 'utf8') as file_:
|
||||||
|
text = file_.read()
|
||||||
|
return text
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def nlp():
|
||||||
|
return English()
|
||||||
|
|
||||||
|
|
||||||
|
def test_consistency(nlp, sun_text):
|
||||||
|
tokens = nlp(sun_text)
|
||||||
|
for head in tokens:
|
||||||
|
for child in head.lefts:
|
||||||
|
assert child.head is head
|
||||||
|
for child in head.rights:
|
||||||
|
assert child.head is head
|
Loading…
Reference in New Issue
Block a user