mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-14 11:36:24 +03:00
11 lines
223 B
Python
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)
|