mirror of
https://github.com/evroon/bracket.git
synced 2026-01-19 03:28:41 -05:00
7 lines
249 B
Python
7 lines
249 B
Python
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"
|