2021-11-17 16:53:32 +00:00
|
|
|
import pytest
|
2022-07-07 16:29:26 +00:00
|
|
|
import pytest_asyncio
|
2021-11-17 16:53:32 +00:00
|
|
|
from tests.conftest import client
|
|
|
|
|
2022-06-01 12:53:05 +00:00
|
|
|
|
2021-11-17 16:53:32 +00:00
|
|
|
@pytest.mark.asyncio
|
|
|
|
async def test_core_views_generic(client):
|
|
|
|
response = await client.get("/")
|
|
|
|
assert response.status_code == 200
|