mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
9db670b996
* Regression test for issue 6207 * Fix issue 6207 * Sign contributor agreement * Minor adjustments to test Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
19 lines
425 B
Python
19 lines
425 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from spacy.util import filter_spans
|
|
|
|
|
|
def test_issue6207(en_tokenizer):
|
|
doc = en_tokenizer("zero one two three four five six")
|
|
|
|
# Make spans
|
|
s1 = doc[:4]
|
|
s2 = doc[3:6] # overlaps with s1
|
|
s3 = doc[5:7] # overlaps with s2, not s1
|
|
|
|
result = filter_spans((s1, s2, s3))
|
|
assert s1 in result
|
|
assert s2 not in result
|
|
assert s3 in result
|