diff options
author | Akshay <[email protected]> | 2020-12-16 14:31:13 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2020-12-16 14:31:13 +0000 |
commit | 5cfdb0eb26e4c3c2b087378c8b882c0eff0409af (patch) | |
tree | 4ee9b6bb7677a2e6d802261d8c23c99a119f6168 /tests/product | |
parent | f25d37318e7873bf4f5ca58bcb850bed70ae77a6 (diff) |
add cart endpoints, rework testing files
Diffstat (limited to 'tests/product')
-rw-r--r-- | tests/product/chair.json | 6 | ||||
-rw-r--r-- | tests/product/dumb_sofa.json | 4 | ||||
-rw-r--r-- | tests/product/smart_sofa.json | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/tests/product/chair.json b/tests/product/chair.json new file mode 100644 index 0000000..bb13c8b --- /dev/null +++ b/tests/product/chair.json | |||
@@ -0,0 +1,6 @@ | |||
1 | { | ||
2 | "name": "Urban Ladder Teak Chair", | ||
3 | "kind": "Chair", | ||
4 | "price": 3500, | ||
5 | "description": "Sleek, modern chair for offices and workplaces" | ||
6 | } | ||
diff --git a/tests/product/dumb_sofa.json b/tests/product/dumb_sofa.json new file mode 100644 index 0000000..2b09a58 --- /dev/null +++ b/tests/product/dumb_sofa.json | |||
@@ -0,0 +1,4 @@ | |||
1 | { | ||
2 | "name": "Home Town Leather Sofa", | ||
3 | "price": 5400 | ||
4 | } | ||
diff --git a/tests/product/smart_sofa.json b/tests/product/smart_sofa.json new file mode 100644 index 0000000..5d7f7d4 --- /dev/null +++ b/tests/product/smart_sofa.json | |||
@@ -0,0 +1,6 @@ | |||
1 | { | ||
2 | "name": "Home Town Leather Sofa", | ||
3 | "kind": "Sofa", | ||
4 | "description": "Comfortable, authentic leather, wooden frame sofa, for living rooms", | ||
5 | "price": 5400 | ||
6 | } | ||