Add some unit tests
This commit is contained in:
parent
fc339f444a
commit
edd6add903
1 changed files with 10 additions and 0 deletions
10
tests/test_cli.py
Normal file
10
tests/test_cli.py
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import unittest
|
||||||
|
|
||||||
|
|
||||||
|
class MyTestCase(unittest.TestCase):
|
||||||
|
def test_something(self):
|
||||||
|
self.assertTrue(True)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
unittest.main()
|
Loading…
Reference in a new issue