mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
38 lines
696 B
Python
38 lines
696 B
Python
from __future__ import unicode_literals
|
|
|
|
from spacy import lex_of
|
|
from spacy.en import lookup
|
|
from spacy.en import unhash
|
|
|
|
|
|
def test_neq():
|
|
addr = lookup('Hello')
|
|
assert lookup('bye') != addr
|
|
|
|
|
|
def test_eq():
|
|
addr = lookup('Hello')
|
|
assert lookup('Hello') == addr
|
|
|
|
|
|
def test_round_trip():
|
|
hello = lookup('Hello')
|
|
assert unhash(lex_of(hello)) == 'Hello'
|
|
|
|
|
|
def test_case_neq():
|
|
addr = lookup('Hello')
|
|
assert lookup('hello') != addr
|
|
|
|
|
|
def test_punct_neq():
|
|
addr = lookup('Hello')
|
|
assert lookup('Hello,') != addr
|
|
|
|
|
|
def test_short():
|
|
addr = lookup('I')
|
|
assert unhash(lex_of(addr)) == 'I'
|
|
addr = lookup('not')
|
|
assert unhash(lex_of(addr)) == 'not'
|