Skip to content

Commit

Permalink
Test with None also
Browse files Browse the repository at this point in the history
  • Loading branch information
bbayles committed Jun 9, 2017
1 parent 419875b commit 9e7ae9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion more_itertools/tests/test_more.py
Original file line number Diff line number Diff line change
Expand Up @@ -1266,7 +1266,7 @@ def test_math(self):
class IsliceExtendedTests(TestCase):
def test_all(self):
iterable = ['0', '1', '2', '3', '4', '5']
indexes = list(range(-4, len(iterable) + 4))
indexes = list(range(-4, len(iterable) + 4)) + [None]
steps = [1, 2, 3, 4, -1, -2, -3, 4]
for slice_args in product(indexes, indexes, steps):
try:
Expand Down

0 comments on commit 9e7ae9e

Please sign in to comment.