summaryrefslogtreecommitdiffstats
path: root/Lib/unittest.py
Commit message (Expand)AuthorAgeFilesLines
* fix a few nits in unittest.py #5771Benjamin Peterson2009-04-181-2/+2
* Adding assertIs and assertIsNot methods to unittest.TestCaseMichael Foord2009-04-051-0/+12
* Change the way unittest.TestSuite use their tests to always access them throu...Michael Foord2009-04-051-4/+4
* Store the functions in the _type_equality_funcs as wrapped objects that are d...Michael Foord2009-04-021-4/+15
* Better exception messages for unittest assert methods.Michael Foord2009-04-021-69/+99
* remove double underscoresBenjamin Peterson2009-04-011-31/+32
* Issue an actual PendingDeprecationWarning for the TestCase.fail* methods.Gregory P. Smith2009-03-311-9/+17
* Rename the actual method definitions to the official assertFoo names.Gregory P. Smith2009-03-311-21/+26
* The unittest.TestCase.assertEqual() now displays the differences in lists,Gregory P. Smith2009-03-311-21/+446
* rename TestCase.skip() to skipTest() because it causes annoying problems with...Benjamin Peterson2009-03-261-1/+1
* remove uneeded functionBenjamin Peterson2009-03-261-11/+4
* add shorthands for expected failures and unexpected successBenjamin Peterson2009-03-251-2/+2
* another style nitBenjamin Peterson2009-03-241-1/+2
* fix newline issue in test summaryBenjamin Peterson2009-03-241-1/+3
* fix typoBenjamin Peterson2009-03-241-1/+1
* add new skipping things to __all__Benjamin Peterson2009-03-241-2/+4
* update docstringBenjamin Peterson2009-03-241-1/+2
* remove special metadataBenjamin Peterson2009-03-241-4/+0
* some cleanup and modernizationBenjamin Peterson2009-03-241-41/+50
* update from CVSBenjamin Peterson2009-03-231-1/+1
* comply with the evilJavaNamingScheme for attribute namesBenjamin Peterson2009-03-231-7/+7
* implement test skipping and expected failuresBenjamin Peterson2009-03-231-15/+189
* Issue #2153: modernize coding style of unittest.py, remove obsolete compatibi...Antoine Pitrou2008-12-281-46/+25
* Issue #4444: Allow assertRaises() to be used as a context handler.Antoine Pitrou2008-12-281-8/+30
* Issue 2235: Py3k warnings are now emitted for classes that will no longer inh...Nick Coghlan2008-08-111-0/+3
* #3390: replace a remaining has_key().Georg Brandl2008-07-181-1/+1
* Suppress -3 warnings in unittest.pyRaymond Hettinger2008-07-101-5/+12
* #2787: Flush stdout after writing test name, helpful when runningGeorg Brandl2008-05-111-0/+4
* Backport PEP 3141 from the py3k branch to the trunk. This includes r50877 (justJeffrey Yasskin2008-01-031-2/+2
* Hashing simplification pointed out by Thomas Wouters.Collin Winter2007-03-091-4/+3
* Add some sanity checks to unittest.TestSuite's addTest(s) methods.Georg Brandl2007-03-071-0/+9
* Patch #787789: allow to pass custom TestRunner instances to unittest'sGeorg Brandl2007-03-071-4/+12
* Patches #1550273, #1550272: fix a few bugs in unittest and add aGeorg Brandl2007-03-071-19/+54
* Patch #1388073: Make unittest.TestCase easier to subclassGeorg Brandl2006-01-201-13/+13
* Reduce the usage of the types module.Raymond Hettinger2005-02-071-1/+1
* SF bug #1078905: Docs for unittest run() methods are misleadingRaymond Hettinger2004-12-041-4/+5
* Patch #1061904 / bug #878275: give a nicer error message when someoneJohannes Gijsbers2004-11-071-0/+2
* Added an __iter__ method for test suites.Jim Fulton2004-08-281-0/+3
* Replace backticks with repr() or "%r"Walter Dörwald2004-02-121-4/+4
* Variation of Thomas Heller's patch (722638) for improving readabilitySteve Purcell2003-12-061-10/+26
* Another instance of the same typo.Steve Purcell2003-10-261-2/+2
* Incorporated patch 819077, from George Yoshida:Steve Purcell2003-10-261-7/+6
* Fixed bug introduced in revision 1.27Armin Rigo2003-10-241-1/+1
* Removed redundant 'return' statement. (Issue 813159)Steve Purcell2003-09-301-2/+1
* Topical change: use 'startswith()' to identify test methods with aSteve Purcell2003-09-231-2/+2
* - Fixed loading of tests by name when name refers to unboundSteve Purcell2003-09-221-40/+58
* Explicitly define public symbols via __all__: see discussion with RaymondSteve Purcell2003-09-151-0/+10
* SF bug #804115: bad argument handling(unittest.py)Raymond Hettinger2003-09-131-2/+2
* delete unused local variable (pychecker caught)Skip Montanaro2003-07-131-1/+1
* SF bug #715145: unittest.py still uses != in failUnlessEqualRaymond Hettinger2003-04-041-2/+2