def test_verboseReporter(self): result = reporter.VerboseTextReporter(self.stream) result.startTest(self.test) output = self.stream.getvalue() self.failUnlessEqual(output, self.test.id() + ' ... ')
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 ... ')