(self, client: Opencode)
| 20 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 21 | @parametrize |
| 22 | def test_method_read(self, client: Opencode) -> None: |
| 23 | file = client.file.read( |
| 24 | path="path", |
| 25 | ) |
| 26 | assert_matches_type(FileReadResponse, file, path=["response"]) |
| 27 | |
| 28 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 29 | @parametrize |
nothing calls this directly
no test coverage detected