From ff6fad8d84aab264d8cb3934ca05492f1794b7a2 Mon Sep 17 00:00:00 2001 From: deadc0de6 Date: Fri, 7 Aug 2020 14:59:26 +0200 Subject: [PATCH] adding a test for init --- tests/dummy.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/dummy.py diff --git a/tests/dummy.py b/tests/dummy.py new file mode 100644 index 0000000..b85de83 --- /dev/null +++ b/tests/dummy.py @@ -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()