Exemplo n.º 1
0
 def test_verboseReporter(self):
     result = reporter.VerboseTextReporter(self.stream)
     result.startTest(self.test)
     output = self.stream.getvalue()
     self.failUnlessEqual(output, self.test.id() + ' ... ')
Exemplo n.º 2
0
 def test_verboseReporter(self):
     result = reporter.VerboseTextReporter(self.stream)
     result.startTest(self.test)
     output = self.stream.getvalue()
     self.failUnlessEqual(
         output, 'twisted.trial.test.sample.PyunitTest.test_foo ... ')