Files
LibraryAPI/tests/test_authors.py
wowlikon 6658d773bf Global refactoring of the project to use poetry and implement tests,
fixing bugs, changing the handling of dto and db models, preparing to
add new functionality
2025-06-24 13:30:35 +03:00

13 lines
309 B
Python

import pytest
from alembic import command
from alembic.config import Config
from fastapi.testclient import TestClient
from sqlmodel import select, delete, Session
from library_service.main import app
from tests.test_misc import setup_database
client = TestClient(app)
#TODO: add tests for author endpoints