summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_unittest.py
Commit message (Expand)AuthorAgeFilesLines
* unittest.TestResult can now be used with the TextTestRunner. TextTestRunner c...Michael Foord2010-02-231-1/+18
* Issue 6292: for the moment at least, the test suite passes if runR. David Murray2010-02-231-0/+8
* Support for old TestResult object (unittest) with warnings when using unsuppo...Michael Foord2010-02-221-1/+49
* Silence UnicodeWarning in crazy unittest test.Michael Foord2010-02-211-4/+7
* Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode i...Michael Foord2010-02-181-6/+3
* unittest.TestCase uses safe_repr for producing failure messages. Partial fix ...Michael Foord2010-02-181-12/+20
* Fix for unittest tests, to be merged to py3kMichael Foord2010-02-101-3/+3
* Issue 7893 and Issue 7588Michael Foord2010-02-101-10/+45
* Make assertMultiLineEqual the default for comparing unicode strings.Michael Foord2010-02-081-2/+3
* assertRaises as context manager now allows you to access exception as documentedMichael Foord2010-02-071-2/+7
* Rename "exc_value" attribute on assertRaises context manager to "exception".Georg Brandl2010-02-071-9/+1
* unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799.Michael Foord2010-02-061-0/+2
* Silence a couple of -3 warningsEzio Melotti2010-02-021-2/+5
* use assert[Not]IsInstance where appropriateEzio Melotti2010-01-241-26/+26
* use assert[Not]In where appropriateEzio Melotti2010-01-231-4/+4
* Reverting the Revision: 77368. I committed Flox's big patch for tests bySenthil Kumaran2010-01-081-5/+2
* Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. ...Senthil Kumaran2010-01-081-2/+5
* Issue #7197: Allow unittest.TextTestRunner objects to be pickled andAntoine Pitrou2009-11-101-1/+15
* Check and revert expected sys.path alterationsNick Coghlan2009-10-171-5/+9
* #7031: Add TestCase.assertIsInstance and negated method.Georg Brandl2009-10-011-0/+12
* Test discovery in unittest will only attempt to import modules that are impor...Michael Foord2009-09-131-29/+33
* unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute....Michael Foord2009-09-131-0/+41
* Objects that compare equal automatically pass or fail assertAlmostEqual and a...Michael Foord2009-09-131-0/+5
* issue 6275Kristján Valur Jónsson2009-08-271-0/+15
* split unittest.py into a packageBenjamin Peterson2009-07-191-2/+4
* Move TestRunner initialisation into unittest.TestProgram.runTests. Fixes issu...Michael Foord2009-07-141-9/+0
* use assert* methods in test_unittestBenjamin Peterson2009-06-301-53/+53
* 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