summaryrefslogtreecommitdiff
path: root/Lib/unittest.py
Commit message (Expand)AuthorAgeFilesLines
* backport rev. 54207: add a few sanity checks in unittest.TestSuite.addTest(s).Georg Brandl2007-03-071-0/+9
* 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
* Get rid of many apply() calls.Guido van Rossum2003-02-271-3/+3
* Incorporate Skip's suggestion to use SciPy's validation test nearRaymond Hettinger2002-12-291-0/+28
* Now that TestCase is a new-style class, change loadTestsFromModule andGuido van Rossum2002-09-301-2/+4
* Add a missing call to _strclass().Jeremy Hylton2002-08-131-1/+1
* Fix to ensure consistent 'repr' and 'str' results between PythonSteve Purcell2002-08-091-7/+10
* Add module-wide "__metaclass__ = type", as requested by Jim Fulton.Steve Purcell2002-08-081-1/+4
* Fix printing plural (s or "").Neal Norwitz2002-05-311-1/+1
* Munge the RCS keywords to avoid updates, so the version number matches thatFred Drake2002-05-211-1/+1
* Synch with pyunit CVS:Steve Purcell2001-12-171-4/+4
* In unconditional except clauses, don't catch KeyboardInterrupt -- it'sGuido van Rossum2001-12-071-0/+6
* A few formatting nits:Jeremy Hylton2001-10-221-5/+5
* Add missing period in docstring.Fred Drake2001-09-061-1/+1
* Changed TestResult to store only the text representation of an error.Steve Purcell2001-09-061-10/+15
* Merged in bugfix from PyUnit CVS for problem reported by Gary Todd.Steve Purcell2001-08-081-3/+4
* patch 418489 from Andrew Dalke for string format bugSteve Purcell2001-05-101-1/+1
* - Typo in message for TestCase.failIfEqual()Steve Purcell2001-04-151-2/+1
* Whitespace normalization.Tim Peters2001-04-131-1/+1
* - New fail*() methods, and comprehensive set of assert*() synonymsSteve Purcell2001-04-121-28/+63
* * Remove exc_info() kludge -- it actually messed up the Jython outputSteve Purcell2001-04-091-17/+13
* Whitespace normalization.Tim Peters2001-03-291-7/+7
* Updated to latest PyUnit version (1.31 in PyUnit CVS); test_support.pySteve Purcell2001-03-221-246/+238
* The unittest module from PyUNIT, by Steve Purcell.Fred Drake2001-03-211-0/+689