1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-04 20:19:46 +00:00
Files
dotdrop/tests/dummy.py
deadc0de6 f6dbdad63d linting
2023-02-06 17:30:29 +01:00

25 lines
333 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):
"""test case"""
dotdrop.main()
def main():
"""entry point"""
unittest.main()
if __name__ == '__main__':
main()