initial commit

This commit is contained in:
Heiko Ludwig 2024-11-30 06:50:38 +01:00
commit aa505e5bca
5 changed files with 99 additions and 0 deletions

13
test_program.py Executable file
View file

@ -0,0 +1,13 @@
#!/usr/bin/env python3
import program
import unittest
class TestThing(unittest.TestCase):
def setUp(self):
pass
if __name__ == '__main__':
unittest.main()