Repo structure modification
[functest.git] / functest / tests / unit / utils / test_utils.py
1 #!/usr/bin/env python
2
3 # Copyright (c) 2016 Orange and others.
4 #
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9
10 import logging
11 import unittest
12
13 from functest.utils import functest_utils
14
15
16 class FunctestUtilsTesting(unittest.TestCase):
17
18     logging.disable(logging.CRITICAL)
19
20     def setUp(self):
21         self.test = functest_utils
22
23     def test_check_internet_connectivity(self):
24         self.assertTrue(self.test.check_internet_connectivity())
25 # TODO
26 # ...
27
28 if __name__ == "__main__":
29     unittest.main(verbosity=2)