(simple_params)
| 73 | |
| 74 | @pytest.fixture(scope="module") |
| 75 | def simple_rqs(simple_params) -> RequestData: |
| 76 | return RequestData( |
| 77 | [RequestParameter.from_input(key, value) for key, value in simple_params.items()] |
| 78 | ) |
| 79 | |
| 80 | |
| 81 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…