index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Lib
/
unittest
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #19594: Use specific asserts in unittest tests.
Serhiy Storchaka
2013-11-16
3
-9/+9
*
Issue #19352: Fix unittest discovery when a module can be reached through sev...
Antoine Pitrou
2013-10-23
2
-3/+25
*
Docstring typo fix: Arithmentic -> Arithmetic.
Mark Dickinson
2013-09-09
1
-1/+1
*
Closes issue 14971.
Michael Foord
2013-09-08
2
-1/+18
*
Silence deprecation warning in test_unittest for 'None > 1'.
Terry Jan Reedy
2013-09-01
1
-1/+1
*
#18741: fix more typos. Patch by Févry Thibault.
Ezio Melotti
2013-08-17
1
-1/+1
*
#18663: document that assertAlmostEqual also works when the values are equal ...
Ezio Melotti
2013-08-11
1
-0/+4
*
#8906: document failureException, longMessage, and maxDiff in the class docst...
Ezio Melotti
2013-03-29
1
-12/+11
*
#17329: document unittest.SkipTest. Initial patch by Zachary Ware.
Ezio Melotti
2013-03-27
1
-1/+1
*
Correction to issue 17052 fix
Michael Foord
2013-02-11
2
-2/+2
*
Issue 17502: unittest discovery should use self.testLoader
Michael Foord
2013-02-10
2
-1/+18
*
Issue 15505. unittest.installHandler and non callable signal handlers
Michael Foord
2013-01-29
2
-1/+47
*
Issue #16714: use 'raise' exceptions, don't 'throw'.
Andrew Svetlov
2012-12-18
1
-2/+2
*
#16433: fix docstring of assertNotEqual.
Ezio Melotti
2012-11-08
1
-1/+1
*
Pass on parameters in unittest.TextTestResult.__init__ super call
Michael Foord
2012-09-28
2
-1/+14
*
Issue #8767: Restore building with --disable-unicode.
Martin v. Löwis
2012-05-20
1
-1/+5
*
#14832: 'first' now really refers to first arg in unittest assertItemsEqual
R David Murray
2012-05-16
1
-1/+1
*
Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test c...
Antoine Pitrou
2012-04-25
2
-1/+32
*
this can be done without a custom dict (also fixes #12544)
Benjamin Peterson
2011-07-13
1
-22/+3
*
Issue 10326: Fix regression to get test cases to pickle again.
Raymond Hettinger
2011-06-25
2
-7/+43
*
Fix deprecation warnings in test_unittest.
Ezio Melotti
2011-05-09
1
-4/+4
*
#11763: don't use difflib in TestCase.assertMultiLineEqual if the strings are...
Ezio Melotti
2011-04-27
2
-0/+44
*
Issue #10979. unittest stdout buffering now works for class and module fixtures.
Michael Foord
2011-03-17
3
-2/+91
*
Issue #10242: backport of more fixes to unittest.TestCase.assertItemsEqual
Michael Foord
2011-03-17
4
-40/+105
*
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-16
1
-1/+1
*
Issue 10242. Switching unittest.TestCase.assertItemsEqual to use a collection...
Michael Foord
2010-12-19
2
-14/+19
*
Issue 10611. SystemExit should not cause a unittest test run to exit.
Michael Foord
2010-12-19
2
-4/+64
*
Improvement to fix for issue 9926 to allow TestResult to be reused.
Michael Foord
2010-12-19
2
-1/+6
*
Merged revisions 87377 via svnmerge from
Ezio Melotti
2010-12-18
2
-8/+8
*
Merged revisions 86596 via svnmerge from
Ezio Melotti
2010-11-21
3
-12/+12
*
Merged revisions 86511 via svnmerge from
Benjamin Peterson
2010-11-18
1
-1/+2
*
Merged revisions 86101 via svnmerge from
Michael Foord
2010-11-01
3
-19/+32
*
Fix error message for comparing single line strings in unittest.TestCase.asse...
Michael Foord
2010-07-10
2
-3/+23
*
Fix issue with nested test suites debug method and module setups. (unittest)
Michael Foord
2010-06-10
2
-2/+4
*
Typo correction.
Michael Foord
2010-06-09
1
-1/+1
*
Issue 8948. cleanup functions are not run by unittest.TestCase.debug(), plus ...
Michael Foord
2010-06-08
4
-2/+116
*
Code formatting change.
Michael Foord
2010-06-05
1
-0/+1
*
Tests for issue 8302, skipped test in a setUpClass or a setUpModule are repor...
Michael Foord
2010-06-05
3
-4/+47
*
Tests for unittest.TestCase.maxDiff.
Michael Foord
2010-06-05
1
-0/+39
*
Issue 8302. SkipTest exception is setUpClass or setUpModule is now reported a...
Michael Foord
2010-06-05
1
-21/+23
*
Fix unittest tests after previous commit.
Michael Foord
2010-06-05
2
-4/+7
*
unittest.TestCase assertion methods inform you when they have omitted an over...
Michael Foord
2010-06-05
1
-1/+5
*
unittest.TestCase.assertDictEqual and assertMultilineEqual provide better def...
Michael Foord
2010-06-05
2
-6/+12
*
Removed the new max_diff argument to assertSequenceEqual. All unittest.TestCa...
Michael Foord
2010-06-05
2
-13/+35
*
Extract error message truncating into a method (unittest.TestCase._truncateMe...
Michael Foord
2010-06-05
1
-4/+6
*
Issue 8351. Suppress large diffs in unittest.TestCase.assertSequenceEqual.
Michael Foord
2010-06-05
2
-3/+29
*
unittest TestLoader test discovery filename matching done in a method. This m...
Michael Foord
2010-06-05
1
-20/+24
*
Improving help message for python -m unittest. Issue 8303.
Michael Foord
2010-05-10
2
-6/+7
*
Adding a test for unittest.BaseTestSuite.
Michael Foord
2010-05-09
1
-0/+45
*
unittest: issue 8301. Adding functions to test suites no longer crashes.
Michael Foord
2010-05-08
2
-1/+15
[next]