(self, client: OpenAI)
| 309 | |
| 310 | @parametrize |
| 311 | def test_method_extend(self, client: OpenAI) -> None: |
| 312 | video = client.videos.extend( |
| 313 | prompt="x", |
| 314 | seconds="4", |
| 315 | video=b"Example data", |
| 316 | ) |
| 317 | assert_matches_type(Video, video, path=["response"]) |
| 318 | |
| 319 | @parametrize |
| 320 | def test_raw_response_extend(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected