Vorbereitung Release 0.2.0

This commit is contained in:
2026-01-29 23:50:41 +01:00
parent 58f80b3e76
commit b26b5ecc9c
571 changed files with 35728 additions and 5022 deletions
+2 -10
View File
@@ -1,15 +1,7 @@
from fastapi.testclient import TestClient
import pytest
from src.main import app
@pytest.fixture(name="client")
def client_fixture():
client = TestClient(app)
yield client
def test_get_artists(client: TestClient):
response = client.get("/comic/artists")
response = client.get("/api/comic/artists")
assert response.status_code == 200
assert len(response.json()) == 5
assert len(response.json()) == 0