1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:54:51 +00:00
Files
dotdrop/tests/test_template.py
2017-03-15 21:44:25 +01:00

23 lines
376 B
Python

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