init unit tests

This commit is contained in:
grillazz
2021-03-26 13:07:42 +01:00
parent ee843f8b14
commit 8f7e264fd1
11 changed files with 95 additions and 22 deletions

0
tests/api/__init__.py Normal file
View File

10
tests/api/test_stuff.py Normal file
View File

@@ -0,0 +1,10 @@
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