mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 05:37:03 +03:00
35 lines
619 B
Python
35 lines
619 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
|