spaCy/tests/test_iter_lexicon.py
Matthew Honnibal 81d878beb2 * Upd tests
2014-12-30 21:34:09 +11:00

18 lines
250 B
Python

import pytest
from spacy.en import English
@pytest.fixture
def EN():
return English()
def test_range_iter(EN):
for i in range(len(EN.vocab)):
lex = EN.vocab[i]
def test_iter(EN):
i = 0
for lex in EN.vocab:
i += 1