()
| 89 | |
| 90 | |
| 91 | def test_async_mocked_async_function() -> None: |
| 92 | async def async_func() -> None: ... # pragma: no cover |
| 93 | |
| 94 | mock = create_autospec(async_func) |
| 95 | assert is_async_callable(mock) |
| 96 | |
| 97 | |
| 98 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected