(self, request: Request)
| 50 | def test_http_endpoint_does_not_dispatch_non_verb_method(test_client_factory: TestClientFactory) -> None: |
| 51 | class Endpoint(HTTPEndpoint): |
| 52 | async def get(self, request: Request) -> PlainTextResponse: |
| 53 | return PlainTextResponse(class="st">"Hello, world!") class="cm"># pragma: no cover |
| 54 | |
| 55 | async def _do_delete(self, request: Request) -> PlainTextResponse: |
| 56 | return PlainTextResponse(class="st">"Privileged helper") class="cm"># pragma: no cover |
nothing calls this directly
no test coverage detected