[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

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