mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
12 lines
203 B
Python
12 lines
203 B
Python
from __future__ import unicode_literals
|
|
import pytest
|
|
|
|
from spacy.en import EN
|
|
|
|
def test_only_pre1():
|
|
assert len(EN.tokenize("(")) == 1
|
|
|
|
|
|
def test_only_pre2():
|
|
assert len(EN.tokenize("((")) == 2
|