spaCy/tests/test_only_punct.py
Matthew Honnibal 81d878beb2 * Upd tests
2014-12-30 21:34:09 +11:00

14 lines
228 B
Python

from __future__ import unicode_literals
import pytest
from spacy.en import English
def test_only_pre1():
EN = English()
assert len(EN("(")) == 1
def test_only_pre2():
EN = English()
assert len(EN("((")) == 2