still working on encryption

This commit is contained in:
Edwin Eefting 2021-04-20 21:05:44 +02:00
parent 671eda7386
commit 2bf015e127

8
tests/test_encryption.py Normal file
View File

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