mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-25 17:36:30 +03:00
* Add tests for tokens api
This commit is contained in:
parent
d229fbd228
commit
aadc57ab00
16
tests/test_tokens_api.py
Normal file
16
tests/test_tokens_api.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
from __future__ import unicode_literals
|
||||
from spacy.en import English
|
||||
|
||||
import pytest
|
||||
|
||||
@pytest.fixture
|
||||
def tokens():
|
||||
nlp = English()
|
||||
return nlp(u'Give it back! He pleaded.')
|
||||
|
||||
|
||||
def test_getitem(tokens):
|
||||
assert tokens[0].orth_ == 'Give'
|
||||
assert tokens[-1].orth_ == '.'
|
||||
with pytest.raises(IndexError):
|
||||
tokens[len(tokens)]
|
Loading…
Reference in New Issue
Block a user