mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
12 lines
261 B
Python
12 lines
261 B
Python
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
|
def test_getitem(EN):
|
|
tokens = EN(u'Give it back! He pleaded.')
|
|
assert tokens[0].orth_ == 'Give'
|
|
assert tokens[-1].orth_ == '.'
|
|
with pytest.raises(IndexError):
|
|
tokens[len(tokens)]
|