mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
19 lines
333 B
Python
19 lines
333 B
Python
import pytest
|
|
|
|
from spacy._hashing import FixedTable
|
|
|
|
|
|
def test_insert():
|
|
table = FixedTable(20)
|
|
table[5] = 10
|
|
assert table.bucket(5) == 5
|
|
assert table[4] == 0
|
|
assert table[5] == 10
|
|
|
|
def test_clobber():
|
|
table = FixedTable(10)
|
|
table[9] = 1
|
|
assert table.bucket(9) == 9
|
|
assert table.bucket(19) == 9
|
|
|