Example #1
0
def test_count():
    _counter = counter.make_counter(100)
    _counter2 = counter.make_counter2(100)

    for j in range(0, 100):
        assert next(_counter) == _counter2()
Example #2
0
def test_count():
    counter1=counter.make_counter(100)
    counter2=counter.make_counter2(100)

    for j in range(0,100):
        assert next(counter1) == counter2()