(self, async_client: AsyncOpencode)
| 251 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 252 | @parametrize |
| 253 | async def test_method_log(self, async_client: AsyncOpencode) -> None: |
| 254 | app = await async_client.app.log( |
| 255 | level="debug", |
| 256 | message="message", |
| 257 | service="service", |
| 258 | ) |
| 259 | assert_matches_type(AppLogResponse, app, path=["response"]) |
| 260 | |
| 261 | @pytest.mark.skip(reason="Prism tests are disabled") |
| 262 | @parametrize |
nothing calls this directly
no test coverage detected