Initial commit.

This commit is contained in:
Heiko Ludwig 2023-12-01 19:26:42 +01:00
commit 2a65a36f09
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()