def test_ncalls(self): t = Timer('test_ncalls') for i in range(10): t.start() t.stop() assert t.ncalls == 10
def test_stop_nonstarted_fails(self): t = Timer('test_stop_nonstarted_fails') with pytest.raises(AssertionError): t.stop()
def test_elapsed_nonstarted_fails(self): t = Timer('test_elapsed_nonstarted_fails') with pytest.raises(AssertionError): t.elapsed()
def test_ncalls(self): t = Timer("test_ncalls") for i in range(10): t.start() t.stop() assert t.ncalls == 10
def test_stop_nonstarted_fails(self): t = Timer("test_stop_nonstarted_fails") with pytest.raises(AssertionError): t.stop()
def test_elapsed_nonstarted_fails(self): t = Timer("test_elapsed_nonstarted_fails") with pytest.raises(AssertionError): t.elapsed()