Skip to content

Commit

Permalink
#106 some another negative tests were added
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim55667757 committed Dec 4, 2022
1 parent f97defe commit 798579a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_TradeRoutines.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,8 @@ def test_SeparateByEqualPartsNegative(self):
(None, None, None, []),
([1], "", True, []), ([1], "", False, []),
([1, 2, 3], "2", True, []), ([1, 2, 3], "2", False, []),
([1, 2, 3], 4, True, [[1], [2], [3]]), ([1, 2, 3], 4, False, [[1], [2], [3], []]),
([1, 2], 4, True, [[1], [2]]), ([1, 2], 4, False, [[1], [2], [], []]),
]

for test in testData:
Expand Down

0 comments on commit 798579a

Please # to comment.