mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
35 lines
649 B
Python
35 lines
649 B
Python
from __future__ import unicode_literals
|
|
import pytest
|
|
|
|
from spacy.en import English
|
|
|
|
|
|
@pytest.fixture
|
|
def EN():
|
|
return English()
|
|
|
|
|
|
def test_neq(EN):
|
|
addr = EN.vocab['Hello']
|
|
assert EN.vocab['bye']['sic'] != addr['sic']
|
|
|
|
|
|
def test_eq(EN):
|
|
addr = EN.vocab['Hello']
|
|
assert EN.vocab['Hello']['sic'] == addr['sic']
|
|
|
|
|
|
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']
|
|
|
|
|
|
def test_shape_attr(EN):
|
|
example = EN.vocab['example']
|
|
assert example['sic'] != example['shape']
|