spaCy/spacy/tests/regression/test_issue3625.py

13 lines
417 B
Python
Raw Normal View History

# coding: utf8
from __future__ import unicode_literals
from spacy.lang.hi import Hindi
2019-07-17 13:34:13 +03:00
def test_issue3625():
"""Test that default punctuation rules applies to hindi unicode characters"""
nlp = Hindi()
2019-07-17 13:34:13 +03:00
doc = nlp("hi. how हुए. होटल, होटल")
expected = ["hi", ".", "how", "हुए", ".", "होटल", ",", "होटल"]
assert [token.text for token in doc] == expected