Commit e4b899bb authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 20a7ea71
......@@ -125,10 +125,14 @@ def test_allStructs():
assert Y([], 0, 0) == [ T([], B()) ]
assert X([1], 0, 0) == [ T([], B(1)) ]
assert Y([1], 0, 0) == [ T([], B(1)) ]
assert X([1,3], 0, 0) == [ T([], B(1,3)) ]
assert Y([1,3], 0, 0) == [ T([], B(1,3)) ]
assert X([], 0, 1) == [ T([], B()) ] # nothing to split (?) -> y
#assert X([], 0, 1) == [ T([], B()), T([0], B(), B()) ]
assert Y([], 0, 1) == [ T([], B()) ]
assert X([], 1, 0) == [ T([], B()),
......
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