aboutsummaryrefslogtreecommitdiff
path: root/botvac/tests/tests.py
blob: 2fb3b902f70d11f78442c4bc4c20a55a16621e42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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()