mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
12 lines
286 B
Python
12 lines
286 B
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize("text", ["ہےں۔", "کیا۔"])
|
|
def test_contractions(ur_tokenizer, text):
|
|
"""Test specific Urdu punctuation character"""
|
|
tokens = ur_tokenizer(text)
|
|
assert len(tokens) == 2
|