spaCy/spacy/tests/regression/test_issue1698.py

12 lines
278 B
Python
Raw Normal View History

2017-12-12 12:36:11 +03:00
# 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