用法:
assert_has_awaits(calls, any_order=False)
断言已通过指定的调用等待模拟。检查
await_args_list
列表是否等待。如果
any_order
为假,则等待必须是顺序的。在指定的等待之前或之后可能会有额外的调用。如果
any_order
为真,则等待可以按任何顺序排列,但它们必须全部出现在await_args_list
中。>>> mock = AsyncMock() >>> async def main(*args, **kwargs): ... await mock(*args, **kwargs) ... >>> calls = [call("foo"), call("bar")] >>> mock.assert_has_awaits(calls) Traceback (most recent call last): ... AssertionError: Awaits not found. Expected: [call('foo'), call('bar')] Actual: [] >>> asyncio.run(main('foo')) >>> asyncio.run(main('bar')) >>> mock.assert_has_awaits(calls)
相关用法
- Python unittest.mock.AsyncMock.assert_awaited_once_with用法及代码示例
- Python unittest.mock.AsyncMock.assert_any_await用法及代码示例
- Python unittest.mock.AsyncMock.assert_awaited_with用法及代码示例
- Python unittest.mock.AsyncMock.assert_awaited_once用法及代码示例
- Python unittest.mock.AsyncMock.assert_awaited用法及代码示例
- Python unittest.mock.AsyncMock.await_args_list用法及代码示例
- Python unittest.mock.AsyncMock.await_count用法及代码示例
- Python unittest.mock.AsyncMock.await_args用法及代码示例
- Python unittest.mock.AsyncMock用法及代码示例
- Python unittest.mock.Mock.reset_mock用法及代码示例
- Python unittest.mock.Mock.__class__用法及代码示例
- Python unittest.mock.Mock.call_args用法及代码示例
- Python unittest.mock.call用法及代码示例
- Python unittest.mock.Mock.method_calls用法及代码示例
- Python unittest.mock.Mock.call_args_list用法及代码示例
- Python unittest.mock.Mock.assert_called用法及代码示例
- Python unittest.mock.Mock.assert_not_called用法及代码示例
- Python unittest.mock.Mock.mock_calls用法及代码示例
- Python unittest.mock.Mock.assert_has_calls用法及代码示例
- Python unittest.mock.Mock.configure_mock用法及代码示例
注:本文由纯净天空筛选整理自python.org大神的英文原创作品 unittest.mock.AsyncMock.assert_has_awaits。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。