Starting python tests
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Adsooi 2024-09-18 00:30:58 +02:00
parent b50d56d511
commit 9072e94d14
Signed by: Ad5001
GPG key ID: EF45F9C6AFE20160
8 changed files with 66 additions and 28 deletions

View file

@ -0,0 +1,10 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertEqual(True, False) # add assertion here
if __name__ == '__main__':
unittest.main()

View file

View file