Restructuration + init test system

This commit is contained in:
2022-09-11 11:52:41 +02:00
parent a3dd6698fc
commit 6b26b89c69
22 changed files with 60 additions and 82 deletions

0
test/__init__.py Normal file
View File

View File

@@ -0,0 +1,11 @@
import unittest
class TestUpdateModule(unittest.TestCase):
def test_lol(self):
self.assertTrue(True)
if __name__ == '__main__':
unittest.main()