mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2025-08-26 16:40:40 +03:00
11 lines
217 B
Python
11 lines
217 B
Python
import pytest
|
|
from fastapi import status
|
|
from httpx import AsyncClient
|
|
|
|
# decorate all tests with @pytest.mark.asyncio
|
|
pytestmark = pytest.mark.asyncio
|
|
|
|
|
|
async def test_add_stuff(client: AsyncClient):
|
|
assert True
|