Files
ezra-environment/home/venv/lib/python3.12/site-packages/croniter/tests/base.py

12 lines
256 B
Python
Raw Normal View History

2026-04-03 22:42:06 +00:00
import typing
import unittest
class TestCase(unittest.TestCase):
"""
We use this base class for all the tests in this package.
If necessary, we can put common utility or setup code in here.
"""
maxDiff: typing.Optional[int] = 10**10