当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python unittest.mock.AsyncMock.assert_awaited_with用法及代码示例


用法:

assert_awaited_with(*args, **kwargs)

断言最后一个等待是使用指定的参数。

>>> mock = AsyncMock()
>>> async def main(*args, **kwargs):
...     await mock(*args, **kwargs)
...
>>> asyncio.run(main('foo', bar='bar'))
>>> mock.assert_awaited_with('foo', bar='bar')
>>> mock.assert_awaited_with('other')
Traceback (most recent call last):
...
AssertionError: expected call not found.
Expected: mock('other')
Actual: mock('foo', bar='bar')

相关用法


注:本文由纯净天空筛选整理自python.org大神的英文原创作品 unittest.mock.AsyncMock.assert_awaited_with。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。