Skip to content

Commit baaa06d

Browse files
committed
Added parent pointer tree skeleton tests
1 parent 7c731fd commit baaa06d

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
from pydatastructs import MAryTree
2+
from pydatastructs.trees.m_ary_trees import ParentPointerTree
23

34
def test_MAryTree():
45
m = MAryTree(1, 1)
56
assert str(m) == '[(1, 1)]'
7+
8+
def test_ParentPointerTree():
9+
pass

0 commit comments

Comments
 (0)