Commit 6313c161 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent ebf43877
...@@ -88,7 +88,14 @@ def test_topoEncoding(): ...@@ -88,7 +88,14 @@ def test_topoEncoding():
assert X(T([], B(1,3))) == 'T/B1,3' assert X(T([], B(1,3))) == 'T/B1,3'
assert X(T([], T([], B()))) == 'T/T/B' assert X(T([], T([], B()))) == 'T/T/B'
#assert X(T( # XXX more
assert X(T([3],
T([], B(1)),
T([],
T([5], B(), B(7,8,9))))) == "T3/T-T/B1-T5/B-B7,8,9"
# XXX degenerate btree from ^^^
def test_allStructs(): def test_allStructs():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment