mirror of https://github.com/explosion/spaCy.git
Add Doc slicing tests
This commit is contained in:
parent
e4ba8a4b5a
commit
73566899bf
|
@ -12,6 +12,15 @@ def test_getitem(EN):
|
||||||
with pytest.raises(IndexError):
|
with pytest.raises(IndexError):
|
||||||
tokens[len(tokens)]
|
tokens[len(tokens)]
|
||||||
|
|
||||||
|
span = tokens[1:1]
|
||||||
|
assert not '/'.join(token.orth_ for token in span)
|
||||||
|
span = tokens[1:4]
|
||||||
|
assert '/'.join(token.orth_ for token in span) == 'it/back/!'
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
tokens[1:4:2]
|
||||||
|
with pytest.raises(ValueError):
|
||||||
|
tokens[1:4:-1]
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.models
|
@pytest.mark.models
|
||||||
def test_serialize(EN):
|
def test_serialize(EN):
|
||||||
|
|
Loading…
Reference in New Issue