(mixed_params)
| 125 | |
| 126 | @pytest.fixture(scope="module") |
| 127 | def mixed_rqs(mixed_params) -> RequestData: |
| 128 | return RequestData( |
| 129 | [RequestParameter.from_input(key, value) for key, value in mixed_params.items()] |
| 130 | ) |
| 131 | |
| 132 | |
| 133 | class TestRequestDataWithoutRequest: |
nothing calls this directly
no test coverage detected
searching dependent graphs…