(self, client: OpenAI)
| 102 | |
| 103 | @parametrize |
| 104 | def test_path_params_retrieve(self, client: OpenAI) -> None: |
| 105 | with pytest.raises(ValueError, match=r"Expected a non-empty value for `file_id` but received ''"): |
| 106 | client.files.with_raw_response.retrieve( |
| 107 | "", |
| 108 | ) |
| 109 | |
| 110 | @parametrize |
| 111 | def test_method_list(self, client: OpenAI) -> None: |