mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
13 lines
185 B
Python
13 lines
185 B
Python
import pytest
|
|
|
|
|
|
def test_range_iter(en_vocab):
|
|
for i in range(len(en_vocab)):
|
|
lex = en_vocab[i]
|
|
|
|
|
|
def test_iter(en_vocab):
|
|
i = 0
|
|
for lex in en_vocab:
|
|
i += 1
|