Exemplo n.º 1
0
def tests_range3_9():
    assert list(containers.range.range(0, 10, -1)) == list(range(0, 10, -1))
Exemplo n.º 2
0
def test_range_1():
    assert list(containers.range.range(10)) == list(range(10))
Exemplo n.º 3
0
def test_range3_8():
    assert list(containers.range.range(0, -10, -3)) == list(range(0, -10, -3))
Exemplo n.º 4
0
def test_range3_6():
    assert list(containers.range.range(0, 10, 1)) == list(range(0, 10, 1))
Exemplo n.º 5
0
def test_range2_5():
    assert list(containers.range.range(-11, 10)) == list(range(-11, 10))
Exemplo n.º 6
0
def test_range2_2():
    assert list(containers.range.range(5, 10)) == list(range(5, 10))
Exemplo n.º 7
0
def test_range_4():
    assert list(containers.range.range(-1)) == list(range(-1))