mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-04 16:49:42 +00:00
adding a test for init
This commit is contained in:
22
tests/dummy.py
Normal file
22
tests/dummy.py
Normal file
@@ -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()
|
||||
Reference in New Issue
Block a user