seed data

This commit is contained in:
2026-06-16 18:15:43 +05:30
parent 808ffa8fed
commit 0f591b666b
4 changed files with 84 additions and 74 deletions

View File

@@ -140,7 +140,7 @@ def test_full_appointment_lifecycle():
response = client.create_appointment(body=payload)
assert response.status_code == 201
appointment = response.json()
assert appointment["pet_id"] == pet["id"]
assert appointment["pet"]["id"] == pet["id"]
# Fetch it back
get_resp = client.get_appointment(path_params={"id": appointment["id"]})