summaryrefslogtreecommitdiff
path: root/Lib/unittest/test/testmock/testasync.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-39915: Ensure await_args_list is updated according to the order in which ...Karthikeyan Singaravelan2020-03-111-0/+11
* Get mock coverage back to 100% (GH-18228)Chris Withers2020-01-291-41/+18
* Clarify and fix assertions that mocks have not been awaited (GH-18196)Chris Withers2020-01-271-25/+30
* Use relative imports in mock and its tests to help backporting (GH-18197)Chris Withers2020-01-271-66/+68
* bpo-39082: Allow AsyncMock to correctly patch static/class methods (GH-18116)Matthew Kokotovich2020-01-251-0/+23
* Improve test coverage for AsyncMock. (GH-17906)Karthikeyan Singaravelan2020-01-151-4/+49
* bpo-38857: AsyncMock fix for awaitable values and StopIteration fix [3.8] (GH...Jason Fried2019-11-201-16/+58
* bpo-38839: Fix some unused functions in tests (GH-17189)Adam Johnson2019-11-191-0/+1
* bpo-38163: Child mocks detect their type as sync or async (GH-16471)Lisa Roach2019-09-291-25/+42
* bpo-38161: Removes _AwaitEvent from AsyncMock. (GH-16443)Lisa Roach2019-09-291-3/+1
* bpo-38108: Makes mock objects inherit from Base (GH-16060)Lisa Roach2019-09-281-18/+37
* bpo-36871: Avoid duplicated 'Actual:' in assertion message (GH-16361)Samuel Freilich2019-09-241-9/+16
* bpo-36871: Handle spec errors in assert_has_calls (GH-16005)Samuel Freilich2019-09-241-0/+21
* bpo-38136: Updates await_count and call_count to be different things (GH-16192)Lisa Roach2019-09-231-17/+179
* bpo-38093: Correctly returns AsyncMock for async subclasses. (GH-15947)Lisa Roach2019-09-191-48/+115
* bpo-37555: Update _CallList.__contains__ to respect ANY (#14700)Elizabeth Uselton2019-09-131-2/+30
* bpo-37251: Removes __code__ check from _is_async_obj. (GH-15830)Lisa Roach2019-09-101-0/+15
* Fix assertions regarding magic methods function body that was not executed (G...Xtreak2019-09-091-9/+2
* bpo-37075: Fix string concatenation in assert_has_awaits error message (GH-13...Xtreak2019-05-291-2/+4
* bpo-36996: Handle async functions when mock.patch is used as a decorator (GH-...Xtreak2019-05-281-0/+16
* bpo-37047: Refactor AsyncMock setup logic for autospeccing (GH-13574)Xtreak2019-05-271-2/+61
* bpo-26467: Adds AsyncMock for asyncio Mock library support (GH-9296)Lisa Roach2019-05-201-0/+549