diff options
author | Lionel <lionel.miquel46@gmail.com> | 2018-12-16 14:52:12 +0100 |
---|---|---|
committer | Lionel <lionel.miquel46@gmail.com> | 2018-12-16 14:52:12 +0100 |
commit | 469adba31f7ec1b5e2fa167db2b8fe9718d972fa (patch) | |
tree | 9079c0294a7cfdb11233eccc20bd6f94c30f875a /botvac/tests | |
parent | 26a854d455976caf2edbd124fc2bfe066ce61403 (diff) | |
download | aneatocli-469adba31f7ec1b5e2fa167db2b8fe9718d972fa.tar.gz aneatocli-469adba31f7ec1b5e2fa167db2b8fe9718d972fa.zip |
Added files for pip packages. Also added a test file that doesn't work (sadly) for the moment.
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() |