spaCy/spacy/tests/regression/test_issue3178.py

11 lines
223 B
Python
Raw Normal View History

2019-01-27 08:01:30 +03:00
from __future__ import unicode_literals
import pytest
import spacy
@pytest.mark.models('fr')
def test_issue1959(FR):
texts = ['Je suis la mauvaise herbe', "Me, myself and moi"]
for text in texts:
FR(text)