1. 5665bc5 Issue #19594: Use specific asserts in unittest tests. by Serhiy Storchaka · 11 years ago
  2. d5d0bc3 Issue #19352: Fix unittest discovery when a module can be reached through several paths (e.g. under Debian/Ubuntu with virtualenv). by Antoine Pitrou · 11 years ago
  3. b5bc353 #18741: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  4. d51914c #18663: document that assertAlmostEqual also works when the values are equal and add tests. by Ezio Melotti · 11 years ago
  5. 6ae4667 clean the environment from pre-existing PYTHONWARNINGS for test_warnings by Łukasz Langa · 11 years ago
  6. 5e2f593 #14971: Use class method name, not function.__name__, during unittest discovery. by R David Murray · 11 years ago
  7. 8b2cd75 Process DEFAULT values in mock side_effect that returns iterator. by Andrew Svetlov · 11 years ago
  8. b71b8ec Merge by Michael Foord · 12 years ago
  9. f78f5b1 Correction to issue 17052 fix by Michael Foord · 12 years ago
  10. a23a39c Merge by Michael Foord · 12 years ago
  11. 8fd396b Issue 17502: unittest discovery should use self.testLoader by Michael Foord · 12 years ago
  12. d1da29c Merge by Michael Foord · 12 years ago
  13. 6debd76 Closes issue 15505. unittest.installHandler and non-callable signal handlers. by Michael Foord · 12 years ago
  14. 28d591c Closes issue 15323. Improve failure message of Mock.assert_called_once_with by Michael Foord · 12 years ago
  15. 8ef1fce Merge by Michael Foord · 12 years ago
  16. 7a1901f Closes issue #12376 : Pass on parameters in unittest.TextTestResult.__init__ super call by Michael Foord · 12 years ago
  17. f7c4158 Adding patch.stopall method to unittest.mock by Michael Foord · 12 years ago
  18. 7596364 Fix exception when calling reset_mock on a mock created with autospec by Michael Foord · 12 years ago
  19. f99983d Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  20. b05ac86 Issue #14664: It is now possible to use @unittest.skip{If,Unless} on a test class that doesn't inherit from TestCase (i.e. a mixin). by Antoine Pitrou · 12 years ago
  21. 3af125a Closes issue 14634. unittest.mock.create_autospec now supports keyword only arguments. by Michael Foord · 12 years ago
  22. 2cd4873 Closes issue 14636. mock objects raise exceptions from an iterable side_effect by Michael Foord · 12 years ago
  23. 656319e Make unittest.mock.create_autospec resilient against AttributeError on original object by Michael Foord · 12 years ago
  24. c287062 unittest.mock.PropertyMock return value and attributes are now standard MagicMocks by Michael Foord · 12 years ago
  25. e58a562 unittest.mock: a mock created by patch with a spec as the list argument will be callable if __call__ is in the spec by Michael Foord · 12 years ago
  26. 50a8c0e Support subclassing unittest.mock._patch and fix various obscure bugs around patcher spec arguments by Michael Foord · 12 years ago
  27. 313f85f unittest.mock.MagicMock objects are now unorderable by default by Michael Foord · 12 years ago
  28. a74b3aa Remove more Python 2 compatibility cruft from unittest.mock by Michael Foord · 12 years ago
  29. ebff097 And another one... mock import fix. by Michael Foord · 12 years ago
  30. 83a1685 Fix another mock import by Michael Foord · 12 years ago
  31. 0ca9acd Fix import failure in mock test by Michael Foord · 12 years ago
  32. 345266a PEP 417: Adding unittest.mock by Michael Foord · 12 years ago
  33. 5f99ced Refactor unittest command line handling to always use optparse by Michael Foord · 12 years ago
  34. c53ae58 Drop unused import in unittest package. by Florent Xicluna · 13 years ago
  35. b6ffa79 test that TestCase doesn't get cycles by Benjamin Peterson · 13 years ago
  36. b4dc250 Issue #10775: assertRaises, assertRaisesRegex, assertWarns, and assertWarnsRegex now accept a keyword argument 'msg' when used as context managers. Initial patch by Winston Ewert. by Ezio Melotti · 13 years ago
  37. 9490af2 #11763: merge with 3.2. by Ezio Melotti · 13 years ago
  38. edd117f #11763: merge with 3.1. by Ezio Melotti · 13 years ago
  39. 0f53501 #11282: add back the fail* methods and assertDictContainsSubset. by Ezio Melotti · 13 years ago
  40. b7af620 #11282: merge with 3.2. by Ezio Melotti · 13 years ago
  41. 361467e #11282: the fail* methods will stay around a few more versions. by Ezio Melotti · 13 years ago
  42. 45763d0 Merge with 3.2. by Ezio Melotti · 13 years ago
  43. 60c3c9f Save a copy of sys.warnoptions in test_program. by Ezio Melotti · 13 years ago
  44. 42ec7cb Issue #10979. unittest stdout buffering now works with class and module setup and teardown. by Michael Foord · 13 years ago
  45. 98dbba5 Issue #3080: Use repr() to format the module name on error by Victor Stinner · 13 years ago
  46. e9ff2ef Closes issue 10979. unittest buffering now works with class and module setup and teardown by Michael Foord · 13 years ago
  47. 1341bb0 Closes issue 11407. TestCase.run returns the result object used or created by Michael Foord · 13 years ago
  48. 2cebdd4 Remove unittest methods scheduled for removal in 3.3 -- makes the unittest test suite pass again. by Georg Brandl · 14 years ago
  49. cae969e fix test_unittest: ignore DeprecationWarning on assertDictContainsSubset() by Victor Stinner · 14 years ago
  50. 32e1d83 Enable unittest.TestCase to be instantiated without providing a method name. by Michael Foord · 14 years ago
  51. 6f17e2d Issue 10786: unittest.TextTestRunner default stream no longer bound at import time by Michael Foord · 14 years ago
  52. f954217 Add direct tests for the util functions. by Raymond Hettinger · 14 years ago
  53. 93e233d Improve diff for assertCountEqual() to actually show the differing counts. by Raymond Hettinger · 14 years ago
  54. 8396124 Add test for r87454. by Raymond Hettinger · 14 years ago
  55. 8ebe27f Deprecate assertDictContainsSubset() by Raymond Hettinger · 14 years ago
  56. cca5be2 Improvement to fix for issue 9926 to allow TestResult to be reused. by Michael Foord · 14 years ago
  57. f100dbd Fix minor issue in implementation of issue 10470. by Michael Foord · 14 years ago
  58. b3468f7 Issue 10611. Issue 9857. Improve the way exception handling, including test skipping, is done inside TestCase.run by Michael Foord · 14 years ago
  59. 3044fa7 Use lowercase true/false in assertTrue/assertFalse messages. by Ezio Melotti · 14 years ago
  60. 8f77630 #10273: Remove a "Matches" that I missed in r86910. Thanks to RDM for noticing it. by Ezio Melotti · 14 years ago
  61. 36526bf Correct comment in unittest test by Michael Foord · 14 years ago
  62. 37d120a Issue 10620: Specifying test modules by path instead of module name to 'python -m unittest' by Michael Foord · 14 years ago
  63. 5074df6 Issue 7911: unittest.TestCase.longMessage defaults to True for improved failure messages by default by Michael Foord · 14 years ago
  64. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  65. f10c400 Fix test failure in debug builds and add NEWS entry for r86908 by Ezio Melotti · 14 years ago
  66. 6090187 #10535: Enable silenced warnings in unittest by default by Ezio Melotti · 14 years ago
  67. 6e165b3 Issue 10242: unittest.assertItemsEqual makes too many assumptions. by Raymond Hettinger · 14 years ago
  68. 2baf1a6 #9424: add a DeprecationWarning for assertEquals, assertNotEquals, assertAlmostEquals, assertNotAlmostEquals, and assert_ by Ezio Melotti · 14 years ago
  69. b87ef8f Improve test for 'python -m unittest' launching test discovery by Michael Foord · 14 years ago
  70. 086f308 Issue 10470: 'python -m unittest' launches test discovery by default.(If you need to pass options to test discovery the discover subcommand must still be specified explicitly.) by Michael Foord · 14 years ago
  71. b3aedd4 #9424: Replace deprecated assert* methods in the Python test suite. by Ezio Melotti · 14 years ago
  72. b357fb7 Issue 10326: further extend test for unpickling to ensure type lookup mechanism works after unpickling by Michael Foord · 14 years ago
  73. 8a00eec Issue 10326: extend test for pickling of TestCase instances to ensure they can be unpickled too by Michael Foord · 14 years ago
  74. 8ca6d98 Issue 10326: TestCase instances can now be pickled (they store names of instance methods instead of references to the instance methods themselves). by Michael Foord · 14 years ago
  75. bbea35f Fix issue 9926. TestSuite subclasses that override __call__ are called correctly. by Michael Foord · 14 years ago
  76. 4bc12ef Issue #9754: Similarly to assertRaises and assertRaisesRegexp, unittest by Antoine Pitrou · 14 years ago
  77. c653ce3 Fix error message for comparing single line strings in unittest.TestCase.assertEqual. by Michael Foord · 14 years ago
  78. 2b293cf Merged revisions 81878 via svnmerge from by Michael Foord · 14 years ago
  79. b874874 Merged revisions 81853 via svnmerge from by Michael Foord · 14 years ago
  80. 520ed0a Merged revisions 81764 via svnmerge from by Michael Foord · 14 years ago
  81. da562f6 Merged revisions 81763 via svnmerge from by Michael Foord · 14 years ago
  82. ac76074 Merged revisions 81753 via svnmerge from by Michael Foord · 14 years ago
  83. 085dfd3 Merged revisions 81739 via svnmerge from by Michael Foord · 14 years ago
  84. 67c399f Test fix to use floor division. Correction from merge in previous commit. by Michael Foord · 14 years ago
  85. 2034d9a Merged revisions 81728 via svnmerge from by Michael Foord · 14 years ago
  86. ffa2e4e Merged revisions 81022 via svnmerge from by Michael Foord · 14 years ago
  87. 7316219 Merged revisions 80997 via svnmerge from by Michael Foord · 14 years ago
  88. 161b024 Merged revisions 80974 via svnmerge from by Michael Foord · 14 years ago
  89. 3b2494f Merged revisions 80946 via svnmerge from by Michael Foord · 14 years ago
  90. 135d87c Merged revisions 80939 via svnmerge from by Benjamin Peterson · 14 years ago
  91. 01984e9 Merged revisions 80932 via svnmerge from by Michael Foord · 14 years ago
  92. 56fdb75 Merged revisions 80920 via svnmerge from by Michael Foord · 14 years ago
  93. 4a8cf3c Merged revisions 80918 via svnmerge from by Michael Foord · 14 years ago
  94. d23ea06 Merged revisions 80708 via svnmerge from by Michael Foord · 14 years ago
  95. de4ceab Merged revisions 80476 via svnmerge from by Michael Foord · 14 years ago
  96. 3141a63 Merged revisions 80155 via svnmerge from by R. David Murray · 14 years ago
  97. eb24d74 Port #1220212 (os.kill for Win32) to py3k. by Brian Curtin · 14 years ago
  98. b48af54 Merged revisions 79464,79471,79623,79626,79630,79632,79643,79648-79649,79679,79685,79711,79761,79774,79777,79792-79794,79877,79898-79900 via svnmerge from by Benjamin Peterson · 14 years ago
  99. fd1b093 Merged revisions 79297,79310,79382,79425-79427,79450 via svnmerge from by Florent Xicluna · 14 years ago
  100. bf1fab4 Merged revisions 79468 via svnmerge from by Michael Foord · 14 years ago