[2024-12-18] Move toc before tic test to its own test file
This commit is contained in:
parent
47f7beb14c
commit
a01349bf18
@ -34,10 +34,6 @@ class testInvalid:
|
|||||||
with pytest.raises(Exception):
|
with pytest.raises(Exception):
|
||||||
t.tic()
|
t.tic()
|
||||||
|
|
||||||
def testTocBeforeTic(self, t):
|
|
||||||
with pytest.raises(Exception):
|
|
||||||
t.toc()
|
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.parametrize("sleepTime", [0.05, 0.5, 1])
|
@pytest.mark.parametrize("sleepTime", [0.05, 0.5, 1])
|
||||||
class testAccuracy:
|
class testAccuracy:
|
||||||
|
7
tests/testTocBeforeTic.py
Normal file
7
tests/testTocBeforeTic.py
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import pytest
|
||||||
|
import tictoc
|
||||||
|
|
||||||
|
def testTocBeforeTic():
|
||||||
|
with pytest.raises(Exception):
|
||||||
|
t = tictoc.init()
|
||||||
|
t.toc()
|
Loading…
x
Reference in New Issue
Block a user