Files
kontor/kontor-api/tests/test_main.py
T
2025-05-01 01:13:49 +02: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