Beispiel #1
0
 def runTest(self):
     status, tstart, tend, msg = utils.run_test_module(
         self.modname, self.base_path)
     # TODO: Record and output generated traceback
     self.assertEquals(
         1, status, "Failure detected for module '%s'\n\n"
         "%s" % (self.modname, msg))
Beispiel #2
0
 def runTest(self):
     status, tstart, tend, msg, aio_manager = utils.run_test_module(self.modname,
                                                  self.base_path)
     # TODO: Record and output generated traceback
     if not status == 1:
         raise self.failureException("Failure detected for module '%s'\n\n"
                       "%s" % (self.modname, msg))
Beispiel #3
0
 def runTest(self):
     status, tstart, tend, msg = utils.run_test_module(self.modname,
                                                  self.base_path)
     # TODO: Record and output generated traceback
     self.assertEquals(1, status,
                       "Failure detected for module '%s'\n\n"
                       "%s" % (self.modname, msg));
Beispiel #4
0
 def runTest(self):
     status, tstart, tend = utils.run_test_module(self.modname)
     # TODO: Record and output generated traceback
     self.assertEquals(1, status,
                       "Failure detected for module '%s'" % self.modname)
Beispiel #5
0
 def runTest(self):
     status, tstart, tend = utils.run_test_module(self.modname)
     # TODO: Record and output generated traceback
     self.assertEquals(1, status,
                       "Failure detected for module '%s'" % self.modname);
Beispiel #6
0
 def runTest(self):
     status, tstart, tend, msg = utils.run_test_module(self.modname, self.base_path)
     # TODO: Record and output generated traceback
     if not status == 1:
         raise self.failureException("Failure detected for module '%s'\n\n"
                       "%s" % (self.modname, msg))