Jirat Jaturanpinyo
Upload voicevox_engine
edc06cb verified
raw
history blame contribute delete
346 Bytes
"""
/singers API のテスト
"""
from fastapi.testclient import TestClient
from syrupy.assertion import SnapshotAssertion
def test_get_singers_200(client: TestClient, snapshot_json: SnapshotAssertion) -> None:
response = client.get("/singers", params={})
assert response.status_code == 200
assert snapshot_json == response.json()