From 560f86d452277084a1be04fbc4c0e8c5f1206ff5 Mon Sep 17 00:00:00 2001 From: Vee9ahd1 Date: Sat, 11 May 2019 17:46:21 -0400 Subject: basic testing system --- test/__init__.py | 0 test/cli_test.py | 7 +++++++ 2 files changed, 7 insertions(+) create mode 100644 test/__init__.py create mode 100644 test/cli_test.py (limited to 'test') diff --git a/test/__init__.py b/test/__init__.py new file mode 100644 index 0000000..e69de29 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() -- cgit v1.2.1