1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 17:59:46 +00:00

template testing is done in install tests

This commit is contained in:
deadc0de6
2017-03-15 22:44:41 +01:00
parent 93aa48ea55
commit 8aebf58b26

View File

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