diff --git a/tests/test_asciify.py b/tests/test_asciify.py new file mode 100644 index 000000000..eed71a5f3 --- /dev/null +++ b/tests/test_asciify.py @@ -0,0 +1,18 @@ +# -*- coding: utf8 -*- + +from __future__ import unicode_literals +import pytest + +from spacy.orth import asciify + + +def test_tilde(): + string = u'hõmbre' + assert asciify(string) == u'hombre' + + +def test_smart_quote(): + string = u'“' + assert asciify(string) == '"' + string = u'”' + assert asciify(string) == '"'