(self, client: Opencode)
| 82 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 83 | @parametrize |
| 84 | def test_method_log(self, client: Opencode) -> None: |
| 85 | app = client.app.log( |
| 86 | level="debug", |
| 87 | message="message", |
| 88 | service="service", |
| 89 | ) |
| 90 | assert_matches_type(AppLogResponse, app, path=["response"]) |
| 91 | |
| 92 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 93 | @parametrize |
nothing calls this directly
no test coverage detected