from bracket.utils.http import HTTPMethod from tests.integration_tests.api.shared import send_request async def test_ping_endpoint(startup_and_shutdown_uvicorn_server: None) -> None: assert await send_request(HTTPMethod.GET, "ping") == "ping"