summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/test/test_case.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue 10326: Fix regression to get test cases to pickle again.Raymond Hettinger2011-06-251-0/+15
|
* #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵Ezio Melotti2011-04-271-0/+36
| | | | are too long.
* Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqualMichael Foord2011-03-171-14/+26
|
* Issue 10242. Switching unittest.TestCase.assertItemsEqual to use a ↵Michael Foord2010-12-191-0/+5
| | | | | | collections.Counter under the hood. This fixes bugs when comparing collections of items like sets that can be sorted without raising an exception but where sorting has no meaning.
* Issue 10611. SystemExit should not cause a unittest test run to exit.Michael Foord2010-12-191-0/+52
|
* Fix error message for comparing single line strings in ↵Michael Foord2010-07-101-0/+15
| | | | | | unittest.TestCase.assertEqual. Issue 9174
* Tests for issue 8302, skipped test in a setUpClass or a setUpModule are ↵Michael Foord2010-06-051-0/+4
| | | | reported as skips rather than errors.
* Tests for unittest.TestCase.maxDiff.Michael Foord2010-06-051-0/+39
|
* Fix unittest tests after previous commit.Michael Foord2010-06-051-3/+6
|
* Removed the new max_diff argument to assertSequenceEqual. All ↵Michael Foord2010-06-051-4/+21
| | | | unittest.TestCase assert methods that use difflib to produce failure messages now truncate overly long messages. New class attribute unittest.TestCase.maxDiff to configure this if necessary. Issue 8351.
* Issue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual.Michael Foord2010-06-051-0/+19
|
* Turn unittest tests into a packageMichael Foord2010-03-251-0/+907