2021-03-26 13:07:42 +01:00

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