Merge "Get auth token when checking deployment"
[functest-xtesting.git] / functest / tests / unit / core / test_testcase.py
index 7222967..73ed347 100644 (file)
@@ -7,23 +7,23 @@
 # which accompanies this distribution, and is available at
 # http://www.apache.org/licenses/LICENSE-2.0
 
-"""Define the classe required to fully cover testcase."""
+"""Define the class required to fully cover testcase."""
 
 import logging
 import unittest
 
+from functest.core import testcase
+
 import mock
 
-from functest.core import testcase
 
 __author__ = "Cedric Ollivier <cedric.ollivier@orange.com>"
 
 
 class TestCaseTesting(unittest.TestCase):
     """The class testing TestCase."""
-    # pylint: disable=missing-docstring,too-many-public-methods
 
-    logging.disable(logging.CRITICAL)
+    # pylint: disable=missing-docstring,too-many-public-methods
 
     _case_name = "base"
     _project_name = "functest"
@@ -223,6 +223,10 @@ class TestCaseTesting(unittest.TestCase):
         self.assertIn(duration, message)
         self.assertIn('FAIL', message)
 
+    def test_clean(self):
+        self.assertEqual(self.test.clean(), None)
+
 
 if __name__ == "__main__":
+    logging.disable(logging.CRITICAL)
     unittest.main(verbosity=2)