Derek H
Results
1
issues of
Derek H
It appears that applying a `requests_mock.Mocker` decorator on an `async` test function of a `unittest.IsolatedAsyncioTestCase` does not work: ```python @requests_mock.Mocker() async def test_mocker(self, m): m.get("http://127.0.0.1", text="response") requests.get("http://127.0.0.1", timeout=0.5) # error...