1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-01-15 03:56:23 +03:00
spaCy/spacy/tests/regression/test_issue590.py
2017-05-22 13:54:20 +02:00

16 lines
524 B
Python

# coding: utf-8
from __future__ import unicode_literals
from ...matcher import Matcher
from ..util import get_doc
def test_issue590(en_vocab):
"""Test overlapping matches"""
doc = get_doc(en_vocab, ['n', '=', '1', ';', 'a', ':', '5', '%'])
matcher = Matcher(en_vocab)
matcher.add('ab', None, [{'IS_ALPHA': True}, {'ORTH': ':'}, {'LIKE_NUM': True}, {'ORTH': '%'}])
matcher.add('ab', None, [{'IS_ALPHA': True}, {'ORTH': '='}, {'LIKE_NUM': True}])
matches = matcher(doc)
assert len(matches) == 2