diff --git a/spacy/tests/integration/test_load_languages.py b/spacy/tests/integration/test_load_languages.py new file mode 100644 index 000000000..7fff8e75c --- /dev/null +++ b/spacy/tests/integration/test_load_languages.py @@ -0,0 +1,7 @@ +# encoding: utf8 +from __future__ import unicode_literals +from ...fr import French + +def test_load_french(): + nlp = French() + doc = nlp(u'Parlez-vous français?')