summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/case.py
Commit message (Expand)AuthorAgeFilesLines
* 00132-add-rpmbuild-hooks-to-unittest.patchFedora Python maintainers2020-09-291-0/+38
* Update TestCase.assertAlmostEqual and assertNotAlmostEqual docstrings. (GH-39...Miss Islington (bot)2017-10-181-2/+3
* Issue #27626: Spelling fixes in docs, comments and internal namesMartin Panter2016-07-281-2/+2
* Issue #26837: assertSequenceEqual() now correctly outputs non-stringifiedSerhiy Storchaka2016-04-251-3/+3
* Reverted issue #24134 changes.Serhiy Storchaka2015-05-161-7/+5
* Fixed English in error message.Serhiy Storchaka2015-05-061-1/+1
* Issue #24134: assertRaises() and assertRaisesRegexp() checks are not longerSerhiy Storchaka2015-05-061-5/+7
* backport: #20145: assertRaisesRegexp now raises a TypeError on bad regex.R David Murray2014-03-251-2/+2
* #8906: document failureException, longMessage, and maxDiff in the class docst...Ezio Melotti2013-03-291-12/+11
* #17329: document unittest.SkipTest. Initial patch by Zachary Ware.Ezio Melotti2013-03-271-1/+1
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-2/+2
* #16433: fix docstring of assertNotEqual.Ezio Melotti2012-11-081-1/+1
* Issue #8767: Restore building with --disable-unicode.Martin v. Löwis2012-05-201-1/+5
* #14832: 'first' now really refers to first arg in unittest assertItemsEqualR David Murray2012-05-161-1/+1
* Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test c...Antoine Pitrou2012-04-251-1/+2
* this can be done without a custom dict (also fixes #12544)Benjamin Peterson2011-07-131-22/+3
* Issue 10326: Fix regression to get test cases to pickle again.Raymond Hettinger2011-06-251-7/+28
* #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are...Ezio Melotti2011-04-271-0/+8
* Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqualMichael Foord2011-03-171-20/+17
* Issue 10242. Switching unittest.TestCase.assertItemsEqual to use a collection...Michael Foord2010-12-191-14/+14
* Issue 10611. SystemExit should not cause a unittest test run to exit.Michael Foord2010-12-191-4/+12
* Merged revisions 87377 via svnmerge fromEzio Melotti2010-12-181-4/+4
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-6/+6
* Fix error message for comparing single line strings in unittest.TestCase.asse...Michael Foord2010-07-101-3/+8
* Typo correction.Michael Foord2010-06-091-1/+1
* Issue 8948. cleanup functions are not run by unittest.TestCase.debug(), plus ...Michael Foord2010-06-081-0/+3
* Code formatting change.Michael Foord2010-06-051-0/+1
* Fix unittest tests after previous commit.Michael Foord2010-06-051-1/+1
* unittest.TestCase assertion methods inform you when they have omitted an over...Michael Foord2010-06-051-1/+5
* unittest.TestCase.assertDictEqual and assertMultilineEqual provide better def...Michael Foord2010-06-051-2/+4
* Removed the new max_diff argument to assertSequenceEqual. All unittest.TestCa...Michael Foord2010-06-051-9/+14
* Extract error message truncating into a method (unittest.TestCase._truncateMe...Michael Foord2010-06-051-4/+6
* Issue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual.Michael Foord2010-06-051-3/+10
* Updating documentation and adding docstrings to unittest.TestCase.assertRegex...Michael Foord2010-05-081-0/+2
* Issue #8038: Addition of unittest.TestCase.assertNotRegexpMatchesMichael Foord2010-04-021-0/+12
* Addition of delta keyword argument to unittest.TestCase.assertAlmostEquals an...Michael Foord2010-03-271-13/+45
* Issue 7815. __unittest in module globals trims frames from reported stacktrac...Michael Foord2010-03-221-0/+3
* Silence more py3k warnings in unittest.case.Florent Xicluna2010-03-211-2/+2
* Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual...Michael Foord2010-03-201-24/+30
* Remove accidental print statement from last commit.Michael Foord2010-03-071-1/+0
* Fix accidental name rebinding in unittest py3k warning filtering.Michael Foord2010-03-071-2/+3
* Addition of setUpClass and setUpModule shared fixtures to unittest.Michael Foord2010-03-071-0/+11
* Fix for potentials errors in constructing unittest failure messages. Plus ski...Michael Foord2010-03-071-13/+23
* Fix some py3k warnings in the standard library.Florent Xicluna2010-03-071-20/+17
* Support for old TestResult object (unittest) with warnings when using unsuppo...Michael Foord2010-02-221-5/+26
* Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode i...Michael Foord2010-02-181-3/+4
* unittest.TestCase uses safe_repr for producing failure messages. Partial fix ...Michael Foord2010-02-181-34/+46
* Remove deprecation on assert_. It is used too frequently.Michael Foord2010-02-101-1/+1
* Issue 7893 and Issue 7588Michael Foord2010-02-101-10/+7
* Make assertMultiLineEqual the default for comparing unicode strings.Michael Foord2010-02-081-0/+1