1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 16:49:42 +00:00

adding a test for init

This commit is contained in:
deadc0de6
2020-08-07 14:59:26 +02:00
parent 45a1db6702
commit ff6fad8d84

22
tests/dummy.py Normal file
View File

@@ -0,0 +1,22 @@
"""
author: deadc0de6 (https://github.com/deadc0de6)
Copyright (c) 2017, deadc0de6
basic unittest for the import function
"""
import unittest
import dotdrop
class TestDummy(unittest.TestCase):
dotdrop.main()
def main():
unittest.main()
if __name__ == '__main__':
main()