Add regression test for #1698

This commit is contained in:
Ines Montani 2017-12-12 10:36:11 +01:00 committed by GitHub
parent 6455b574fc
commit 9c1ee65268
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,11 @@
# coding: utf8
from __future__ import unicode_literals
import pytest
@pytest.mark.parametrize('text', ['test@example.com', 'john.doe@example.co.uk'])
def test_issue1698(en_tokenizer, text):
doc = en_tokenizer(text)
assert len(doc) == 1
assert not doc[0].like_url