aboutsummaryrefslogtreecommitdiff
path: root/test/cli_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/cli_test.py')
-rw-r--r--test/cli_test.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/cli_test.py b/test/cli_test.py
new file mode 100644
index 0000000..392d5da
--- /dev/null
+++ b/test/cli_test.py
@@ -0,0 +1,7 @@
+import unittest
+
+class TestCli(unittest.TestCase):
+ def test_main(self):
+ self.assertEqual(True,True,"Will always pass")
+if __name__ == '__main__':
+ unittest.main()