spaCy/tests/test_orth.py

27 lines
452 B
Python
Raw Normal View History

2014-07-23 20:36:12 +04:00
from __future__ import unicode_literals
import pytest
import spacy.word
2014-09-10 20:27:44 +04:00
from spacy.en import EN
2014-07-23 20:36:12 +04:00
@pytest.fixture
def C3P0():
2014-08-30 21:01:15 +04:00
return EN.lookup("C3P0")
2014-07-23 20:36:12 +04:00
def test_shape(C3P0):
2014-09-10 20:27:44 +04:00
assert C3P0.string_view(EN.v_shape) == "XdXd"
2014-08-03 00:26:44 +04:00
def test_length():
2014-08-30 21:01:15 +04:00
t = EN.lookup('the')
assert t.length == 3
2014-08-30 21:01:15 +04:00
t = EN.lookup("n't")
assert t.length == 3
2014-08-30 21:01:15 +04:00
t = EN.lookup("'s")
assert t.length == 2
2014-08-30 21:01:15 +04:00
t = EN.lookup('Xxxx')
assert t.length == 4