Add some unit tests

This commit is contained in:
Gabriel Augendre 2019-12-27 22:33:39 +01:00
parent fc339f444a
commit edd6add903
No known key found for this signature in database
GPG key ID: 1E693F4CE4AEE7B4

10
tests/test_cli.py Normal file
View file

@ -0,0 +1,10 @@
import unittest
class MyTestCase(unittest.TestCase):
def test_something(self):
self.assertTrue(True)
if __name__ == "__main__":
unittest.main()