From 9d2b6ee10ec5359cc91769d430485c8c869ba1a8 Mon Sep 17 00:00:00 2001 From: Akshay Date: Thu, 24 Dec 2020 10:51:40 +0530 Subject: monorepo --- backend/tests/product/chair.json | 6 ++++++ backend/tests/product/dumb_sofa.json | 4 ++++ backend/tests/product/smart_sofa.json | 6 ++++++ 3 files changed, 16 insertions(+) create mode 100644 backend/tests/product/chair.json create mode 100644 backend/tests/product/dumb_sofa.json create mode 100644 backend/tests/product/smart_sofa.json (limited to 'backend/tests/product') diff --git a/backend/tests/product/chair.json b/backend/tests/product/chair.json new file mode 100644 index 0000000..bb13c8b --- /dev/null +++ b/backend/tests/product/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/backend/tests/product/dumb_sofa.json b/backend/tests/product/dumb_sofa.json new file mode 100644 index 0000000..2b09a58 --- /dev/null +++ b/backend/tests/product/dumb_sofa.json @@ -0,0 +1,4 @@ +{ + "name": "Home Town Leather Sofa", + "price": 5400 +} diff --git a/backend/tests/product/smart_sofa.json b/backend/tests/product/smart_sofa.json new file mode 100644 index 0000000..5d7f7d4 --- /dev/null +++ b/backend/tests/product/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