From 17426ca9e5e984f06ee6f26d8974e204a5ccbde8 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Wed, 15 Mar 2017 21:44:25 +0100 Subject: [PATCH] adding test placeholders --- tests/test_install.py | 22 ++++++++++++++++++++++ tests/test_template.py | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) create mode 100644 tests/test_install.py create mode 100644 tests/test_template.py diff --git a/tests/test_install.py b/tests/test_install.py new file mode 100644 index 0000000..4ad8818 --- /dev/null +++ b/tests/test_install.py @@ -0,0 +1,22 @@ +""" +author: deadc0de6 (https://github.com/deadc0de6) +Copyright (c) 2017, deadc0de6 +basic unittest for the install function +""" + +import unittest + + +class TestInstall(unittest.TestCase): + + def test_install(self): + '''Test the install function''' + # TODO + self.assertTrue(True) + + +def main(): + unittest.main() + +if __name__ == '__main__': + main() diff --git a/tests/test_template.py b/tests/test_template.py new file mode 100644 index 0000000..16ecdba --- /dev/null +++ b/tests/test_template.py @@ -0,0 +1,22 @@ +""" +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()