spaCy/tests/test_hashing.py
2014-09-13 16:43:59 +02:00

21 lines
363 B
Python

import pytest
from spacy._hashing import PointerHash
import random
def test_insert():
h = PointerHash()
assert h[1] is None
h[1] = 5
assert h[1] == 5
h[2] = 6
assert h[1] == 5
assert h[2] == 6
def test_resize():
h = PointerHash(4)
for i in range(1, 100):
value = int(i * (random.random() + 1))
h[i] = value