[2024-12-18] Move toc before tic test to its own test file

This commit is contained in:
Andrew Conlin 2024-12-18 16:15:49 +00:00
parent 47f7beb14c
commit a01349bf18
2 changed files with 7 additions and 4 deletions

View File

@ -34,10 +34,6 @@ class testInvalid:
with pytest.raises(Exception):
t.tic()
def testTocBeforeTic(self, t):
with pytest.raises(Exception):
t.toc()
@pytest.mark.parametrize("sleepTime", [0.05, 0.5, 1])
class testAccuracy:

View File

@ -0,0 +1,7 @@
import pytest
import tictoc
def testTocBeforeTic():
with pytest.raises(Exception):
t = tictoc.init()
t.toc()