-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest_app.py
45 lines (37 loc) · 1.18 KB
/
test_app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import unittest
class TestApp(unittest.TestCase):
"""The parent class"""
def setUp(self):
"""SetUp"""
# self.app = app.OrderList()
# self.app = app.Order()
pass
def tearDown(self):
"""Teardown"""
pass
def test_get(self):
"""Test the GET all request"""
# response = self.app.get('/v1/orders')
# print(response.data)
pass
def test_get_one(self):
"""Test to retrieve a single order"""
# response = requests.get('/v1/orders/<int:id>')
# assert response.text == "Your order was found"
pass
def test_create_order(self):
"""Test the creation of orders"""
# response = self.app.post('/v1/orders')
# print(response.data)
pass
def test_update_order(self):
"""Test updating the order status"""
# response = self.app.update('/v1/orders/<int:id>')
# print(response.data)
pass
def test_delete_order(self):
"""Test delete an order by id"""
# response = self.app.delete('/v1/orders/<int:id>')
# assert isinstance(response.data, object)
# print(response.data)
pass