Home
last modified time | relevance | path

Searched refs:assert_awaited_once_with (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Lib/unittest/test/testmock/
Dtestasync.py225 spec.assert_awaited_once_with(1, 2, c=3)
256 mock_method.assert_awaited_once_with(1, 2, c=3)
772 mock.async_method.assert_awaited_once_with()
940 self.mock.assert_awaited_once_with('foo')
943 self.mock.assert_awaited_once_with('foo')
947 self.mock.assert_awaited_once_with('foo')
/external/python/cpython3/Doc/library/
Dunittest.mock.rst975 .. method:: assert_awaited_once_with(*args, **kwargs)
985 >>> mock.assert_awaited_once_with('foo', bar='bar')
987 >>> mock.assert_awaited_once_with('foo', bar='bar')
/external/python/cpython3/Lib/unittest/
Dmock.py2217 def assert_awaited_once_with(self, /, *args, **kwargs): member in AsyncMockMixin