spaCy/tests/tokenizer/test_wiki_sun.py
Matthew Honnibal dd587b7477 * Fix tests
2015-06-07 18:07:32 +02:00

22 lines
385 B
Python

from __future__ import unicode_literals
from spacy.util import utf8open
import pytest
from os import path
HERE = path.dirname(__file__)
@pytest.fixture
def sun_txt():
loc = path.join(HERE, '..', 'sun.txt')
return utf8open(loc).read()
def test_tokenize(sun_txt, en_tokenizer):
assert len(sun_txt) != 0
tokens = en_tokenizer(sun_txt)
assert len(tokens) > 100