diff options
Diffstat (limited to 'botvac/tests')
-rw-r--r-- | botvac/tests/__init__.py | 0 | ||||
-rw-r--r-- | botvac/tests/tests.py | 14 |
2 files changed, 14 insertions, 0 deletions
diff --git a/botvac/tests/__init__.py b/botvac/tests/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/botvac/tests/__init__.py diff --git a/botvac/tests/tests.py b/botvac/tests/tests.py new file mode 100644 index 0000000..2fb3b90 --- /dev/null +++ b/botvac/tests/tests.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python +from unittest import TestCase +from docopt import docopt +import aneatocli + + +class TestAneatoCLI(TestCase): + def thelogTest(self): + loginSuccess=aneatocli.logTest() + self.assertTrue(isinstance(loginSuccess, basestring)) + + +if __name__ == "__main__": + unittest.main() |