(self, client: Opencode)
| 92 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 93 | @parametrize |
| 94 | def test_method_text(self, client: Opencode) -> None: |
| 95 | find = client.find.text( |
| 96 | pattern="pattern", |
| 97 | ) |
| 98 | assert_matches_type(FindTextResponse, find, path=["response"]) |
| 99 | |
| 100 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 101 | @parametrize |
nothing calls this directly
no test coverage detected