Léo Ecrepont
Results
1
comments of
Léo Ecrepont
Here is the fixture holding the assert : ```python @pytest.fixture(autouse=True) def respx_configuration( respx_mock: respx.MockRouter, ) -> abc.Generator[None, None, None]: yield respx_mock.assert_all_called() ``` and a test ```python def test_mocked(respx_mock: respx.MockRouter): respx_mock.route(...