(self, client: OpenAI)
| 109 | |
| 110 | @parametrize |
| 111 | def test_method_list(self, client: OpenAI) -> None: |
| 112 | file = client.files.list() |
| 113 | assert_matches_type(SyncCursorPage[FileObject], file, path=["response"]) |
| 114 | |
| 115 | @parametrize |
| 116 | def test_method_list_with_all_params(self, client: OpenAI) -> None: |
nothing calls this directly
no test coverage detected