You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
from ..maps import PreshMap
|
|
|
|
|
|
def test_pop1():
|
|
table = PreshMap()
|
|
table[10] = 20
|
|
table[30] = 25
|
|
assert table[10] == 20
|
|
assert table[30] == 25
|
|
table.pop(30)
|
|
assert table[10] == 20
|