spaCy/tests/tokens/test_tokens_api.py

12 lines
261 B
Python
Raw Normal View History

2015-02-07 21:14:07 +03:00
from __future__ import unicode_literals
import pytest
2015-04-19 22:39:18 +03:00
def test_getitem(EN):
tokens = EN(u'Give it back! He pleaded.')
2015-02-07 21:14:07 +03:00
assert tokens[0].orth_ == 'Give'
assert tokens[-1].orth_ == '.'
with pytest.raises(IndexError):
tokens[len(tokens)]