2014-10-14 09:26:16 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2014-12-23 00:40:32 +00:00
|
|
|
from spacy.en import English
|
2014-10-14 09:26:16 +00:00
|
|
|
|
|
|
|
|
2014-11-04 15:03:22 +00:00
|
|
|
#def test_hyphen():
|
|
|
|
# tokens = EN.tokenize('best-known')
|
|
|
|
# assert len(tokens) == 3
|
2014-10-14 09:26:16 +00:00
|
|
|
|
|
|
|
|
|
|
|
def test_period():
|
2014-12-23 00:40:32 +00:00
|
|
|
EN = English()
|
|
|
|
tokens = EN('best.Known')
|
2014-10-14 09:26:16 +00:00
|
|
|
assert len(tokens) == 3
|
2014-12-23 00:40:32 +00:00
|
|
|
tokens = EN('zombo.com')
|
2014-10-14 09:26:16 +00:00
|
|
|
assert len(tokens) == 1
|