From 8aebf58b26c5706d190c3bf0915cb47cda0d379b Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 15 Mar 2017 22:44:41 +0100 Subject: [PATCH] template testing is done in install tests --- tests/test_template.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 tests/test_template.py diff --git a/tests/test_template.py b/tests/test_template.py deleted file mode 100644 index 16ecdba..0000000 --- a/tests/test_template.py +++ /dev/null @@ -1,22 +0,0 @@ -""" -author: deadc0de6 (https://github.com/deadc0de6) -Copyright (c) 2017, deadc0de6 -basic unittest for the template function -""" - -import unittest - - -class TestTemplate(unittest.TestCase): - - def test_template(self): - '''Test the templating feature''' - # TODO - self.assertTrue(True) - - -def main(): - unittest.main() - -if __name__ == '__main__': - main()