mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 20:19:46 +00:00
25 lines
333 B
Python
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()
|