summaryrefslogtreecommitdiff
path: root/mock
AgeCommit message (Expand)Author
2019-04-30rewrite f-string.Chris Withers
2019-04-30bpo-35047, unittest.mock: Better error messages on assert_called_xxx failures...Petter Strandmark
2019-04-30fspath added in 3.6Chris Withers
2019-04-30bpo-35022: unittest.mock.MagicMock now also supports __fspath__ (GH-9960)Max Bélanger
2019-04-30unittest.mock doc: Fix references to recursive seal of Mocks (GH-9028)Mario Corchero
2019-04-30No 'yield from' in Python 2.Chris Withers
2019-04-30bpo-32933: Implement __iter__ method on mock_open() (GH-5974)Tony Flury
2019-04-30Improve error message when mock.assert_has_calls fails (GH-8205)davidair
2019-04-30In Python 2 round() and friends use __float__ first.Chris Withers
2019-04-30bpo-33516: Add support for __round__ in MagicMock (GH-6880)John Reese
2019-04-30bpo-32297: Few misspellings found in Python source code comments. (#4803)Mike
2019-04-30no f-strings in py2.Chris Withers
2019-04-30fixup importChris Withers
2019-04-30bpo-30541: Add new method to seal mocks (GH61923)Mario Corchero
2019-04-30Spelling fixes (#2902)Ville Skyttä
2019-04-30bpo-28961: Address my comments from earlier code review (#305)Berker Peksag
2019-04-30bpo-28911: Clarify the behaviour of assert_called_once_with. (#251)Arne de Laat
2019-04-30Issue #28735: Fixed the comparison of mock.MagickMock with mock.ANY.Serhiy Storchaka
2019-04-30Serhiy's approach didn't work on Python 2 or 3.4Chris Withers
2019-04-30python 2 has no subtestChris Withers
2019-04-30Issue #20804: The unittest.mock.sentinel attributes now preserve theirSerhiy Storchaka
2019-04-30Fix unittest.mock._Call: don't ignore nameVictor Stinner
2019-04-30Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger
2019-04-30Issue #26750: use inspect.isdatadescriptor instead of our ownGregory P. Smith
2019-04-30Issue #26750: unittest.mock.create_autospec() now works properlyGregory P. Smith
2019-04-27English spelling and grammar fixesMartin Panter
2019-04-27Issue #23641: Added __getnewargs_ex__ to the list of special mock attributes.Serhiy Storchaka
2019-04-27These can't be keyword-only until 2.7 support is dropped.Chris Withers
2019-04-27Issue #21271: Adds new keyword only parameters in reset_mock callKushal Das
2019-04-27Issue #26807: mock_open 'files' no longer error on readline at end of file.Robert Collins
2019-04-27Issue #25195: Fix a regression in mock.MagicMockBerker Peksag
2019-04-26remove a copy of the version that's likely to get out of dateChris Withers
2018-12-23Skip failure test on pypy2 and make pypy2 mandatoryxtreak
2018-11-30functools.partial has no func_defaults on Py2Chris Withers
2018-11-29Fix autospec's behavior on method-bound builtins.Aaron Gallagher
2018-11-29Merge pull request #420 from HarrisonGregg/fix-autospec-function-methodsChris Withers
2018-11-29Merge pull request #435 from jdufresne/unittest2Chris Withers
2018-11-29Merge pull request #434 from jdufresne/unusedChris Withers
2018-09-21Initial commit of mock 2.0.0master-cuttlefish-testing-releaseKevin Cheng
2018-09-16Drop dependency of unittest2; use stdlib unittest insteadJon Dufresne
2018-09-16Clean up unused importsJon Dufresne
2018-07-25Upgrade Python syntax with pyupgradeHugo
2018-01-19Fix assert_xxx methods on autospec functionsHarrison Gregg
2017-10-28Drop support for EOL Python <= 2.6 & 3.0-3.2, add 3.5 & 3.6Hugo
2016-12-12Merge pull request #376 from eli-b/patch-2Robert Collins
2016-12-11Update version in header to 2.0.0Eli Boyarski
2016-09-26I am investigating a migration to Python 3, and to facilitate this we are usi...Roy Williams
2016-09-11Remove dead code from __init__.pyEli Boyarski
2016-04-06Fix #338: depend on a fixed version of funcsigs.Robert Collins
2016-03-23Add Mock.assert_called()Victor Stinner