This commit is contained in:
2025-08-22 17:02:20 +02:00
commit 39947f3c17
11 changed files with 22 additions and 0 deletions

0
tests/__init__.py Normal file
View File

Binary file not shown.

Binary file not shown.

10
tests/test_main.py Normal file
View File

@@ -0,0 +1,10 @@
from src.main import main
import unittest
class TestMain(unittest.TestCase):
def test_main(self):
self.assertEqual(True, True)
if __name__ == '__main__':
unittest.main()