Commit bb633687 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent e1e5d142
......@@ -304,3 +304,6 @@ def test_iterSplitByN():
assert X(0,2, 0) == ( [0,2] ,)
assert X(0,2, 1) == ( [0,1,2] ,)
assert X(0,2, 2) == ( )
assert X(0,3, 0) == ( [0,3] ,)
assert X(0,3, 1) == ( [0,1,3], [0,2,3] )
assert X(0,3, 2) == ( [0,1,2,3] ,)
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