(self, client: OpenAI)
| 392 | |
| 393 | @parametrize |
| 394 | def test_raw_response_remix(self, client: OpenAI) -> None: |
| 395 | response = client.videos.with_raw_response.remix( |
| 396 | video_id="video_123", |
| 397 | prompt="x", |
| 398 | ) |
| 399 | |
| 400 | assert response.is_closed is True |
| 401 | assert response.http_request.headers.get("X-Stainless-Lang") == "python" |
| 402 | video = response.parse() |
| 403 | assert_matches_type(Video, video, path=["response"]) |
| 404 | |
| 405 | @parametrize |
| 406 | def test_streaming_response_remix(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected