summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unittest.py
Commit message (Expand)AuthorAgeFilesLines
* Fix unittest discovery tests for Windows. Issue 6199Michael Foord2009-06-051-1/+3
* Restore default testRunner argument in unittest.main to None. Issue 6177Michael Foord2009-06-021-0/+8
* Add test discovery to unittest. Issue 6001.Michael Foord2009-05-291-1/+296
* make class skipping decorators the same as skipping every test of the classBenjamin Peterson2009-05-251-8/+9
* Rename TestCase._result to _resultForDoCleanups to avoid potential clashes in...Michael Foord2009-05-211-1/+1
* Adds a verbosity keyword argument to unittest.main plus a minor fix allowing ...Michael Foord2009-05-111-10/+13
* (no commit message)Michael Foord2009-05-021-37/+197
* Add addCleanup and doCleanups to unittest.TestCase.Michael Foord2009-05-021-2/+106
* don't let sys.argv be used in the testsBenjamin Peterson2009-05-021-2/+5
* Adds an exit parameter to unittest.main(). If False main no longerMichael Foord2009-05-021-2/+71
* Adding assertIs and assertIsNot methods to unittest.TestCaseMichael Foord2009-04-051-0/+23
* Store the functions in the _type_equality_funcs as wrapped objects that are d...Michael Foord2009-04-021-0/+12
* Better exception messages for unittest assert methods.Michael Foord2009-04-021-1/+171
* Rename the actual method definitions to the official assertFoo names.Gregory P. Smith2009-03-311-1/+27
* The unittest.TestCase.assertEqual() now displays the differences in lists,Gregory P. Smith2009-03-311-47/+417
* rename TestCase.skip() to skipTest() because it causes annoying problems with...Benjamin Peterson2009-03-261-2/+2
* comply with the evilJavaNamingScheme for attribute namesBenjamin Peterson2009-03-231-2/+2
* implement test skipping and expected failuresBenjamin Peterson2009-03-231-6/+124
* Issue #4444: Allow assertRaises() to be used as a context handler.Antoine Pitrou2008-12-281-0/+37
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-1/+22
* Replaced import of the 'new' module with 'types' module and added a deprecati...Christian Heimes2007-11-271-58/+30
* Fix those parts in the testsuite that assumed that sys.maxint would cause ove...Kristján Valur Jónsson2007-05-031-2/+4
* Whitespace normalization.Tim Peters2007-03-121-416/+416
* Add some sanity checks to unittest.TestSuite's addTest(s) methods.Georg Brandl2007-03-071-0/+13
* Patches #1550273, #1550272: fix a few bugs in unittest and add aGeorg Brandl2007-03-071-17/+2275
* Added an __iter__ method for test suites.Jim Fulton2004-08-281-0/+31