Update unittest template and skip one test
authorChristian Herdtweck <christian.herdtweck@intra2net.com>
Fri, 7 Oct 2016 14:21:00 +0000 (16:21 +0200)
committerChristian Herdtweck <christian.herdtweck@intra2net.com>
Fri, 7 Oct 2016 14:21:00 +0000 (16:21 +0200)
test/template.py
test/test_log_read.py

index 408557f..ff5effb 100644 (file)
@@ -16,7 +16,7 @@
 # This exception does not invalidate any other reasons why a work based
 # on this file might be covered by the GNU General Public License.
 
-""" module_name_unittest.py: unit tests for module_name
+""" test_module_name.py: unit tests for module_name
 
 Tests classes and functions in module_name
 
@@ -45,6 +45,7 @@ def tearDownModule():
 
 
 class ModuleNameTester(unittest.TestCase):
+    """ only test case in this module, see module doc for more help """
 
     @classmethod
     def setUpClass(cls):
index 08f8d3f..642eba7 100644 (file)
@@ -101,7 +101,6 @@ class LogFileWriter(Thread):
         time.sleep(self.pause_time)
 
 
-@unittest.skip("Need to debug")
 class LogReadTester(unittest.TestCase):
     """ class with all the tests """