summaryrefslogtreecommitdiffstats
path: root/Lib/unittest/test
Commit message (Collapse)AuthorAgeFilesLines
* Issue #29274: tests cases → test casesMartin Panter2017-01-181-4/+4
|
* Reverted issue #24134 changes.Serhiy Storchaka2015-05-161-5/+0
|
* Issue #24134: assertRaises() and assertRaisesRegexp() checks are not longerSerhiy Storchaka2015-05-061-0/+46
| | | | | | successful if the callable is None. Added tests for assertRaises().
* #22092: use absolute imports in unittest tests. Patch by Vajrasky Kok.Ezio Melotti2014-08-077-5/+8
|
* backport: #20145: assertRaisesRegexp now raises a TypeError on bad regex.R David Murray2014-03-251-0/+6
| | | | | Previously a non-string, non-regex second argument and no callable argument could cause the test to appear to always pass.
* Issue #19594: Use specific asserts in unittest tests.Serhiy Storchaka2013-11-163-9/+9
|
* Issue #19352: Fix unittest discovery when a module can be reached through ↵Antoine Pitrou2013-10-231-1/+23
| | | | several paths (e.g. under Debian/Ubuntu with virtualenv).
* Closes issue 14971.Michael Foord2013-09-081-0/+15
| | | | | unittest test discovery no longer gets confused when a function has a different __name__ than its name in the TestCase class dictionary.
* Silence deprecation warning in test_unittest for 'None > 1'.Terry Jan Reedy2013-09-011-1/+1
| | | | This is the same change that was made in 3.x when this became an error.
* #18741: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
|
* #18663: document that assertAlmostEqual also works when the values are equal ↵Ezio Melotti2013-08-111-0/+4
| | | | and add tests.
* Correction to issue 17052 fixMichael Foord2013-02-111-1/+1
|
* Issue 17502: unittest discovery should use self.testLoaderMichael Foord2013-02-101-0/+14
|
* Issue 15505. unittest.installHandler and non callable signal handlersMichael Foord2013-01-291-0/+32
|
* Pass on parameters in unittest.TextTestResult.__init__ super callMichael Foord2012-09-281-0/+13
|
* Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test ↵Antoine Pitrou2012-04-251-0/+30
| | | | class that doesn't inherit from TestCase (i.e. a mixin).
* Issue 10326: Fix regression to get test cases to pickle again.Raymond Hettinger2011-06-251-0/+15
|
* Fix deprecation warnings in test_unittest.Ezio Melotti2011-05-091-4/+4
|
* #11763: don't use difflib in TestCase.assertMultiLineEqual if the strings ↵Ezio Melotti2011-04-271-0/+36
| | | | are too long.
* Issue #10979. unittest stdout buffering now works for class and module fixtures.Michael Foord2011-03-171-0/+67
|
* Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqualMichael Foord2011-03-172-20/+26
|
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-1/+1
|
* 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
|
* Improvement to fix for issue 9926 to allow TestResult to be reused.Michael Foord2010-12-191-1/+5
|
* Merged revisions 87377 via svnmerge fromEzio Melotti2010-12-181-4/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87377 | ezio.melotti | 2010-12-18 18:31:58 +0100 (Sat, 18 Dec 2010) | 1 line Use lowercase true/false in assertTrue/assertFalse messages. ........
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-212-6/+6
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Merged revisions 86101 via svnmerge fromMichael Foord2010-11-011-0/+14
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86101 | michael.foord | 2010-11-01 21:09:03 +0000 (Mon, 01 Nov 2010) | 1 line Fix issue 9926. TestSuite subclasses that override __call__ are called correctly. ........
* Fix error message for comparing single line strings in ↵Michael Foord2010-07-101-0/+15
| | | | | | unittest.TestCase.assertEqual. Issue 9174
* Fix issue with nested test suites debug method and module setups. (unittest)Michael Foord2010-06-101-1/+3
|
* Issue 8948. cleanup functions are not run by unittest.TestCase.debug(), plus ↵Michael Foord2010-06-082-0/+87
| | | | class and module teardowns are not run by unittest.TestSuite.debug().
* Tests for issue 8302, skipped test in a setUpClass or a setUpModule are ↵Michael Foord2010-06-052-2/+45
| | | | 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
|
* Adding a test for unittest.BaseTestSuite.Michael Foord2010-05-091-0/+45
|
* unittest: issue 8301. Adding functions to test suites no longer crashes.Michael Foord2010-05-081-0/+9
|
* Issue 7780. Adding a test for unittest test discovery from a dotted path.Michael Foord2010-05-081-0/+17
|
* Issue 8547 - detecting and reporting that modules have been imported from ↵Michael Foord2010-05-071-2/+44
| | | | the wrong location under test discovery.
* revert r80932; it breaks windowsBenjamin Peterson2010-05-071-39/+0
|
* Issue 8547 - detecting and reporting that modules have been imported from ↵Michael Foord2010-05-071-0/+39
| | | | the wrong location under test discovery.
* Adding tests for unittest command line handling of buffer, catchbreak and ↵Michael Foord2010-05-072-0/+206
| | | | failfast.
* Adding a test for unittest test discovery with dotted path name.Michael Foord2010-05-071-0/+17
|
* Fix unittest tests to not abuse traceback.format_exceptionMichael Foord2010-05-021-1/+14
|
* Adding unittest.removeHandler function / decorator for removing the ↵Michael Foord2010-04-251-0/+21
| | | | signal.SIGINT signal handler. With tests and docs.
* Issue #8263: On freebsd6 the unittest 'break' test stops regrtest; skip it.R. David Murray2010-04-171-0/+2
| | | | | This is presumably related to issue 3864, and appears to be due to a platform bug on freebsd6.
* unittest.result.TestResult does not create its buffers until they're used. ↵Michael Foord2010-04-071-3/+5
| | | | It uses StringIO not cStringIO. Issue 8333.
* Another attempt at a fix for unittest.test.test_result for windows line endingsMichael Foord2010-04-031-5/+4
|
* Cross platform unittest.TestResult newline handling when buffering stdout / ↵Michael Foord2010-04-031-4/+5
| | | | stderr.