spaCy/tests/test_iter_lexicon.py

18 lines
258 B
Python
Raw Normal View History

import pytest
2014-12-21 13:01:46 +03:00
from spacy.en import English
2014-12-21 13:01:46 +03:00
@pytest.fixture
def EN():
return English(tag=True)
2014-12-21 13:01:46 +03:00
def test_range_iter(EN):
for i in range(len(EN.vocab)):
lex = EN.vocab[i]
2014-12-21 13:01:46 +03:00
def test_iter(EN):
i = 0
2014-12-21 13:01:46 +03:00
for lex in EN.vocab:
i += 1