summaryrefslogtreecommitdiffstats
path: root/Lib/unittest
Commit message (Expand)AuthorAgeFilesLines
...
* expected failure should not trigger failfast behavior in unittest.Michael Foord2010-03-222-2/+1
* Removing Python 2.3 compatibility code from unittest.Michael Foord2010-03-222-7/+2
* -f/--failfast command line option for unittest. Issue 8074. Documentation sti...Michael Foord2010-03-223-6/+32
* Issue 7815. __unittest in module globals trims frames from reported stacktrac...Michael Foord2010-03-229-5/+22
* Silence more py3k warnings in unittest.case.Florent Xicluna2010-03-211-2/+2
* Change order of arguments in a unittest function.Michael Foord2010-03-211-4/+4
* A faulty load_tests in a test module no longer halts test discovery. A placeh...Michael Foord2010-03-211-7/+21
* Issue 7832: renaming unittest.TestCase.assertSameElements to assertItemsEqual...Michael Foord2010-03-202-24/+67
* 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-074-10/+205
* 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
* unittest.TestResult can now be used with the TextTestRunner. TextTestRunner c...Michael Foord2010-02-232-6/+16
* Support for old TestResult object (unittest) with warnings when using unsuppo...Michael Foord2010-02-222-7/+28
* 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-182-34/+52
* Adding TextTestResult to unittest.__all__Michael Foord2010-02-111-1/+2
* Remove deprecation on assert_. It is used too frequently.Michael Foord2010-02-101-1/+1
* Issue 7893 and Issue 7588Michael Foord2010-02-104-27/+32
* Make assertMultiLineEqual the default for comparing unicode strings.Michael Foord2010-02-081-0/+1
* Fix exc_value -> exception in docstringEzio Melotti2010-02-081-1/+1
* assertRaises as context manager now allows you to access exception as documentedMichael Foord2010-02-071-1/+1
* 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
* unittest.TestLoader creates a TestSuite before calling load_tests. Issue 7799.Michael Foord2010-02-061-1/+2
* 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
* Change error report when the object passed to suite.addTest is notR. David Murray2010-01-281-1/+1
* Issue #7092: Fix the DeprecationWarnings emitted by the standard libraryAntoine Pitrou2010-01-041-3/+9
* More yearly updates.Georg Brandl2010-01-011-1/+1
* now that deepcopy can handle instance methods, this hack can be removed #7409Benjamin Peterson2009-11-291-13/+2
* Backport micro-fix from the py3k svnmergeAntoine Pitrou2009-11-101-1/+1
* Issue #7197: Allow unittest.TextTestRunner objects to be pickled andAntoine Pitrou2009-11-101-0/+2
* #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
* Test creation moved from TestProgram.parseArgs to TestProgram.createTests exc...Michael Foord2009-09-271-5/+8
* Test discovery in unittest will only attempt to import modules that are impor...Michael Foord2009-09-132-16/+46
* unittest.TestLoader.loadTestsFromName honors the loader suiteClass attribute....Michael Foord2009-09-131-2/+2
* Objects that compare equal automatically pass or fail assertAlmostEqual and a...Michael Foord2009-09-131-1/+9
* issue 6275Kristján Valur Jónsson2009-08-271-0/+1
* split unittest.py into a packageBenjamin Peterson2009-07-199-0/+1773