update scripts to use Postgres
This commit is contained in:
@@ -1,15 +1,7 @@
|
||||
from fastapi.testclient import TestClient
|
||||
import pytest
|
||||
from src.main import kontor
|
||||
|
||||
|
||||
@pytest.fixture(name="client")
|
||||
def client_fixture():
|
||||
client = TestClient(kontor)
|
||||
yield client
|
||||
|
||||
|
||||
def test_get_artists(client: TestClient):
|
||||
response = client.get("/api/comic/artists")
|
||||
assert response.status_code == 200
|
||||
assert len(response.json()) == 5
|
||||
assert len(response.json()) == 0
|
||||
|
||||
Reference in New Issue
Block a user