* This PR fixes the `RuntimeWarning` in `inspect.isawaitable(mock())` where `mock()` was not awaited.
* Fix typo in asynctest project.
>>> mock = AsyncMock()
>>> asyncio.iscoroutinefunction(mock)
True
- >>> inspect.isawaitable(mock())
+ >>> inspect.isawaitable(mock()) # doctest: +SKIP
True
The result of ``mock()`` is an async function which will have the outcome
>>> mock = MagicMock(async_func)
>>> mock
<MagicMock spec='function' id='...'>
- >>> mock()
+ >>> mock() # doctest: +SKIP
<coroutine object AsyncMockMixin._mock_call at ...>
.. method:: assert_awaited()
:class:`.Mock` object: the wrapped object may have methods
defined as async function functions.
- Based on Martin Richard's asyntest project.
+ Based on Martin Richard's asynctest project.
"""