(self, async_client: AsyncOpenAI)
| 362 | |
| 363 | @parametrize |
| 364 | async def test_method_list(self, async_client: AsyncOpenAI) -> None: |
| 365 | file = await async_client.files.list() |
| 366 | assert_matches_type(AsyncCursorPage[FileObject], file, path=["response"]) |
| 367 | |
| 368 | @parametrize |
| 369 | async def test_method_list_with_all_params(self, async_client: AsyncOpenAI) -> None: |
nothing calls this directly
no test coverage detected