summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/case.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Rename "exc_value" attribute on assertRaises context manager to "exception".Georg Brandl2010-02-071-2/+2
|
* Use "regexp" consistently.Georg Brandl2010-02-071-8/+8
|
* Correction to docstring correction.Michael Foord2010-02-051-1/+1
|
* Improving docstrings in unittest.TestCaseMichael Foord2010-02-051-5/+15
|
* Fix typo in assertSequenceEqual docstring.R. David Murray2010-01-291-1/+1
|
* Issue #7092: Fix the DeprecationWarnings emitted by the standard libraryAntoine Pitrou2010-01-041-3/+9
| | | | when using the -3 flag. Patch by Florent Xicluna.
* now that deepcopy can handle instance methods, this hack can be removed #7409Benjamin Peterson2009-11-291-13/+2
| | | | Thanks Robert Collins
* #7031: Add TestCase.assertIsInstance and negated method.Georg Brandl2009-10-011-0/+13
|
* Fix some weird whitespace and two other overlong lines.Georg Brandl2009-10-011-4/+7
|
* Objects that compare equal automatically pass or fail assertAlmostEqual and ↵Michael Foord2009-09-131-1/+9
| | | | assertNotAlmostEqual tests on unittest.TestCase. Issue 6567.
* issue 6275Kristján Valur Jónsson2009-08-271-0/+1
| | | | Add an "exc_value" attribute to the _AssertRaisesContext context manager in the unittest package. This allows further tests on the exception that was raised after the context manager exits.
* split unittest.py into a packageBenjamin Peterson2009-07-191-0/+893