-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_objects.py
More file actions
81 lines (63 loc) · 2.13 KB
/
Copy pathtest_objects.py
File metadata and controls
81 lines (63 loc) · 2.13 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import unittest
from bbdata.endpoint import output
class TestInfo(unittest.TestCase):
def setUp(self) -> None:
output.login()
def test__get_all(self):
# TODO Implement test
response = output.objects.get_all()
print(response)
def test__put(self):
# TODO Implement test
# response = output.objects.put(...)
self.assertFalse(True)
def test__get(self):
# TODO Implement test
response = output.objects.get(2648)
print(response)
def test__post(self):
# TODO Implement test
# response = output.objects.post(...)
self.assertFalse(True)
def test__delete(self):
# TODO Implement test
# response = output.objects.delete(...)
self.assertFalse(True)
def test__post_disable(self):
# TODO Implement test
# response = output.objects.post_disable(...)
self.assertFalse(True)
def test__post_enable(self):
# TODO Implement test
# response = output.objects.post_enable(...)
self.assertFalse(True)
def test__get_tokens(self):
# TODO Implement test
response = output.objects.get_tokens(2648, "A test")
print(response)
def test__put_tokens(self):
# TODO Implement test
# response = output.objects.put_tokens(...)
self.assertFalse(True)
def test__post_tokens(self):
# TODO Implement test
# response = output.objects.post_tokens(...)
self.assertFalse(True)
def test__delete_tokens(self):
# TODO Implement test
# response = output.objects.delete_tokens(...)
self.assertFalse(True)
def test__put_tags(self):
# TODO Implement test
# response = output.objects.put_tags(...)
self.assertFalse(True)
def test__delete_tags(self):
# TODO Implement test
# response = output.objects.delete_tags(...)
self.assertFalse(True)
def test__get_comments(self):
# TODO Implement test
response = output.objects.get_comments(2684)
print(response)
def tearDown(self) -> None:
output.logout()