From c9d28a538068963f6a6260a17a41e4f8c136bcfe Mon Sep 17 00:00:00 2001
From: Cédric Ollivier <cedric.ollivier@orange.com>
Date: Tue, 28 Mar 2017 14:53:44 +0200
Subject: Fully fix pylint warnings in test_testcase
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

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 | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/functest/tests/unit/core/test_testcase.py b/functest/tests/unit/core/test_testcase.py
index 9ee1609fc..32104194b 100644
--- a/functest/tests/unit/core/test_testcase.py
+++ b/functest/tests/unit/core/test_testcase.py
@@ -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):
-- 
cgit