(self, client: Opencode)
| 24 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 25 | @parametrize |
| 26 | def test_method_files(self, client: Opencode) -> None: |
| 27 | find = client.find.files( |
| 28 | query="query", |
| 29 | ) |
| 30 | assert_matches_type(FindFilesResponse, find, path=["response"]) |
| 31 | |
| 32 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 33 | @parametrize |
nothing calls this directly
no test coverage detected