Fully fix pylint warnings in test_testcase
authorCédric Ollivier <cedric.ollivier@orange.com>
Tue, 28 Mar 2017 12:53:44 +0000 (14:53 +0200)
committerCédric Ollivier <cedric.ollivier@orange.com>
Tue, 28 Mar 2017 12:58:00 +0000 (14:58 +0200)
It partially takes into account missing-docstring.
It is disabled for public methods as they are unit tests.

It has been rated at 10.00/10.

Change-Id: I70e6729b9228d58cc67a18da29b925dad22cf5bd
Signed-off-by: Cédric Ollivier <cedric.ollivier@orange.com>
functest/tests/unit/core/test_testcase.py

index 9ee1609..3210419 100644 (file)
@@ -7,6 +7,8 @@
 # which accompanies this distribution, and is available at
 # http://www.apache.org/licenses/LICENSE-2.0
 
+"""Define the classe required to fully cover testcase."""
+
 import logging
 import unittest
 
@@ -14,9 +16,14 @@ 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
+
     logging.disable(logging.CRITICAL)
 
     def setUp(self):