summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
Commit message (Collapse)AuthorAgeFilesLines
...
* Fix some weird whitespace and two other overlong lines.Georg Brandl2009-10-011-4/+7
|
* Test creation moved from TestProgram.parseArgs to TestProgram.createTests ↵Michael Foord2009-09-271-5/+8
| | | | exclusively. Issue 6956.
* Test discovery in unittest will only attempt to import modules that are ↵Michael Foord2009-09-132-16/+46
| | | | importable; i.e. their names are valid Python identifiers. If an import fails during discovery this will be recorded as an error and test discovery will continue. Issue 6568.
* unittest.TestLoader.loadTestsFromName honors the loader suiteClass ↵Michael Foord2009-09-131-2/+2
| | | | attribute. Issue 6866.
* 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-199-0/+1773