Files
kontor/kontor-api/tests/test_main.py
T
2026-01-29 23:50:41 +01:00

8 lines
210 B
Python

from fastapi.testclient import TestClient
def test_get_artists(client: TestClient):
response = client.get("/api/comic/artists")
assert response.status_code == 200
assert len(response.json()) == 0