New submission from Adam Getchell <[EMAIL PROTECTED]>: Picking the canonical example of unit test:
import random import unittest class TestSequenceFunctions(unittest.TestCase): def setUp(self): self.seq = range(10) def testshuffle(self): # make sure the shuffled sequence does not lose any elements random.shuffle(self.seq) self.seq.sort() self.assertEqual(self.seq, range(10)) def testchoice(self): element = random.choice(self.seq) self.assert_(element in self.seq) def testsample(self): self.assertRaises(ValueError, random.sample, self.seq, 20) for element in random.sample(self.seq, 5): self.assert_(element in self.seq) if __name__ == '__main__': unittest.main() Gives the following error: >>> ... ---------------------------------------------------------------------- Ran 3 tests in 0.003s OK Traceback (most recent call last): File "C:\Projects\Python\randomunittest.py", line 25, in <module> unittest.main() File "C:\Python25\lib\unittest.py", line 768, in __init__ self.runTests() File "C:\Python25\lib\unittest.py", line 806, in runTests sys.exit(not result.wasSuccessful()) SystemExit: False The error lies in the following code snippet: def runTests(self): if self.testRunner is None: self.testRunner = TextTestRunner(verbosity=self.verbosity) result = self.testRunner.run(self.test) sys.exit(not result.wasSuccessful()) ---------- components: Library (Lib) files: unittest.py messages: 66651 nosy: acgetchell severity: normal status: open title: unittest.py sys.exit error type: behavior versions: Python 2.5 Added file: http://bugs.python.org/file10289/unittest.py __________________________________ Tracker <[EMAIL PROTECTED]> <http://bugs.python.org/issue2821> __________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com