2014-07-05 22:51:42 +04:00
|
|
|
from __future__ import unicode_literals
|
2014-12-23 03:40:32 +03:00
|
|
|
import pytest
|
2014-07-05 22:51:42 +04:00
|
|
|
|
2014-12-23 03:40:32 +03:00
|
|
|
from spacy.en import English
|
2014-07-05 22:51:42 +04:00
|
|
|
|
|
|
|
|
2014-12-23 03:40:32 +03:00
|
|
|
@pytest.fixture
|
|
|
|
def EN():
|
|
|
|
return English()
|
2014-07-05 22:51:42 +04:00
|
|
|
|
|
|
|
|
2014-12-23 03:40:32 +03:00
|
|
|
def test_neq(EN):
|
|
|
|
addr = EN.vocab['Hello']
|
|
|
|
assert EN.vocab['bye']['sic'] != addr['sic']
|
2014-07-05 22:51:42 +04:00
|
|
|
|
|
|
|
|
2014-12-23 03:40:32 +03:00
|
|
|
def test_eq(EN):
|
|
|
|
addr = EN.vocab['Hello']
|
|
|
|
assert EN.vocab['Hello']['sic'] == addr['sic']
|
2014-07-05 22:51:42 +04:00
|
|
|
|
|
|
|
|
2014-12-23 03:40:32 +03:00
|
|
|
def test_case_neq(EN):
|
|
|
|
addr = EN.vocab['Hello']
|
|
|
|
assert EN.vocab['hello']['sic'] != addr['sic']
|
|
|
|
|
|
|
|
|
|
|
|
def test_punct_neq(EN):
|
|
|
|
addr = EN.vocab['Hello']
|
|
|
|
assert EN.vocab['Hello,']['sic'] != addr['sic']
|
2014-12-26 06:26:27 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_shape_attr(EN):
|
|
|
|
example = EN.vocab['example']
|
|
|
|
assert example['sic'] != example['shape']
|