spaCy/spacy/tests/regression/test_issue3178.py
2019-01-27 06:01:30 +01:00

11 lines
223 B
Python

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)