From af628595f3cc5c373502fc73acf579047aee5482 Mon Sep 17 00:00:00 2001 From: Akshay Date: Mon, 16 Nov 2020 21:02:29 +0530 Subject: add test json data --- tests/json_data/add_user.json | 6 ++++++ tests/json_data/chair.json | 6 ++++++ tests/json_data/dumb_sofa.json | 4 ++++ tests/json_data/smart_sofa.json | 6 ++++++ 4 files changed, 22 insertions(+) create mode 100644 tests/json_data/add_user.json create mode 100644 tests/json_data/chair.json create mode 100644 tests/json_data/dumb_sofa.json create mode 100644 tests/json_data/smart_sofa.json diff --git a/tests/json_data/add_user.json b/tests/json_data/add_user.json new file mode 100644 index 0000000..c7b2c15 --- /dev/null +++ b/tests/json_data/add_user.json @@ -0,0 +1,6 @@ +{ + "username": "Ramu Kaka", + "password": "ramu123", + "phone_number": "123454234", + "email_id": "ramu@kaka.com" +} diff --git a/tests/json_data/chair.json b/tests/json_data/chair.json new file mode 100644 index 0000000..bb13c8b --- /dev/null +++ b/tests/json_data/chair.json @@ -0,0 +1,6 @@ +{ + "name": "Urban Ladder Teak Chair", + "kind": "Chair", + "price": 3500, + "description": "Sleek, modern chair for offices and workplaces" +} diff --git a/tests/json_data/dumb_sofa.json b/tests/json_data/dumb_sofa.json new file mode 100644 index 0000000..2b09a58 --- /dev/null +++ b/tests/json_data/dumb_sofa.json @@ -0,0 +1,4 @@ +{ + "name": "Home Town Leather Sofa", + "price": 5400 +} diff --git a/tests/json_data/smart_sofa.json b/tests/json_data/smart_sofa.json new file mode 100644 index 0000000..5d7f7d4 --- /dev/null +++ b/tests/json_data/smart_sofa.json @@ -0,0 +1,6 @@ +{ + "name": "Home Town Leather Sofa", + "kind": "Sofa", + "description": "Comfortable, authentic leather, wooden frame sofa, for living rooms", + "price": 5400 +} -- cgit v1.2.3