1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:19:46 +00:00
Files
dotdrop/tests/dummy.py
2020-08-07 14:59:26 +02:00

23 lines
291 B
Python

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