(file_params)
| 104 | |
| 105 | @pytest.fixture(scope="module") |
| 106 | def file_rqs(file_params) -> RequestData: |
| 107 | return RequestData( |
| 108 | [RequestParameter.from_input(key, value) for key, value in file_params.items()] |
| 109 | ) |
| 110 | |
| 111 | |
| 112 | @pytest.fixture(scope="module") |
nothing calls this directly
no test coverage detected
searching dependent graphs…