コード例 #1
0
ファイル: test_avl.py プロジェクト: edelooff/python-trees
def test_double_insert_exception():
    tree = AVLTree([5])
    with pytest.raises(ValueError):
        tree.insert(5)
コード例 #2
0
ファイル: test_avl.py プロジェクト: edelooff/python-trees
def test_tree_insert():
    tree = AVLTree()
    tree.insert(5)
    assert 5 in tree