Michael Bach Kristensen
Results
1
issues of
Michael Bach Kristensen
With given code: ```python import httpx from respx.router import MockRouter class TestErrorFeedback: def test_missing_path(self, respx_mock: MockRouter) -> None: url: str = 'https://example.com' respx_mock.get(url=url + '/hey').respond(status_code=200) httpx.get(url=url) def test_missing_header(self, respx_mock: MockRouter)...
enhancement