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