mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
Add regression test for #1491
This commit is contained in:
parent
144a93c2a5
commit
718f1c50fb
28
spacy/tests/regression/test_issue1491.py
Normal file
28
spacy/tests/regression/test_issue1491.py
Normal file
|
@ -0,0 +1,28 @@
|
|||
# coding: utf8
|
||||
from __future__ import unicode_literals
|
||||
|
||||
import pytest
|
||||
import regex as re
|
||||
|
||||
from ...lang.en import English
|
||||
from ...tokenizer import Tokenizer
|
||||
|
||||
|
||||
@pytest.mark.xfail
|
||||
def test_issue1491():
|
||||
"""Test possible off-by-one error in tokenizer prefix/suffix/infix rules."""
|
||||
prefix_re = re.compile(r'''[\[\("']''')
|
||||
suffix_re = re.compile(r'''[\]\)"']''')
|
||||
infix_re = re.compile(r'''[-~]''')
|
||||
|
||||
def my_tokenizer(nlp):
|
||||
return Tokenizer(nlp.vocab, {},
|
||||
prefix_search=prefix_re.search,
|
||||
suffix_search=suffix_re.search,
|
||||
infix_finditer=infix_re.finditer)
|
||||
|
||||
nlp = English()
|
||||
nlp.tokenizer = my_tokenizer(nlp)
|
||||
doc = nlp("single quote 'goodbye end.")
|
||||
tokens = [token.text for token in doc]
|
||||
assert tokens == ['single', 'quote', "'", 'goodbye', 'end', '.']
|
Loading…
Reference in New Issue
Block a user