From 8446652682e3114c1be36ba2f5030232b5cd16e1 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Thu, 29 Jan 2026 13:53:57 +0000 Subject: [PATCH] Initial upload: API Mock CLI v0.1.0 --- tests/fixtures/responses.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 tests/fixtures/responses.json diff --git a/tests/fixtures/responses.json b/tests/fixtures/responses.json new file mode 100644 index 0000000..b124111 --- /dev/null +++ b/tests/fixtures/responses.json @@ -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" + } + } +}