1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 19:44:45 +00:00

adding test placeholders

This commit is contained in:
deadc0de6
2017-03-15 21:44:25 +01:00
parent 7583789058
commit 17426ca9e5
2 changed files with 44 additions and 0 deletions

22
tests/test_install.py Normal file
View File

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

22
tests/test_template.py Normal file
View File

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