""" 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()