gpt_chat_bot/tests/integration/bot/test_bot_updates.py
2023-09-20 21:56:36 +03:00

13 lines
248 B
Python

import pytest
from httpx import AsyncClient
pytestmark = [
pytest.mark.asyncio,
]
async def test_bot_updates(rest_client: AsyncClient) -> None:
response = await rest_client.get("/api/healthcheck")
assert response.status_code == 200