spaCy/tests/test_orth.py

28 lines
521 B
Python
Raw Normal View History

2014-07-23 16:36:12 +00:00
from __future__ import unicode_literals
import pytest
import spacy.word
2014-09-10 16:27:44 +00:00
from spacy.en import EN
from spacy.lexeme import *
2014-07-23 16:36:12 +00:00
@pytest.fixture
def C3P0():
return EN.lexicon.lookup("C3P0")
2014-07-23 16:36:12 +00:00
def test_shape(C3P0):
assert C3P0.string_view(LexStr_shape) == "XdXd"
2014-08-02 20:26:44 +00:00
def test_length():
t = EN.lexicon.lookup('the')
assert t.length == 3
t = EN.lexicon.lookup("n't")
assert t.length == 3
t = EN.lexicon.lookup("'s")
assert t.length == 2
t = EN.lexicon.lookup('Xxxx')
assert t.length == 4