Initial upload: API Mock CLI v0.1.0
Some checks failed
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / type-check (push) Has been cancelled
CI / build (push) Has been cancelled
CI / test (3.10) (push) Has been cancelled

This commit is contained in:
2026-01-29 13:53:57 +00:00
parent ca43a5fc94
commit 8446652682

22
tests/fixtures/responses.json vendored Normal file
View File

@@ -0,0 +1,22 @@
{
"success": {
"status_code": 200,
"body": {
"message": "Success",
"data": {}
}
},
"error": {
"status_code": 400,
"body": {
"error": "Bad Request",
"details": {}
}
},
"not_found": {
"status_code": 404,
"body": {
"error": "Not Found"
}
}
}