-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_candidates_api.py
260 lines (190 loc) · 5.86 KB
/
test_candidates_api.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
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
# coding: utf-8
"""
Unofficial python library for the SmartRecruiters API
The SmartRecruiters API provides a platform to integrate services or applications, build apps and create fully customizable career sites. It exposes SmartRecruiters functionality and allows to connect and build software enhancing it.
OpenAPI spec version: 1
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import os
import sys
import unittest
import smartrecruiters_python_client
from smartrecruiters_python_client.rest import ApiException
from smartrecruiters_python_client.apis.candidates_api import CandidatesApi
class TestCandidatesApi(unittest.TestCase):
""" CandidatesApi unit test stubs """
def setUp(self):
self.api = smartrecruiters_python_client.apis.candidates_api.CandidatesApi()
def tearDown(self):
pass
def test_candidates_add(self):
"""
Test case for candidates_add
Create a new candidate and assign to a Talent Pool
"""
pass
def test_candidates_add_to_job(self):
"""
Test case for candidates_add_to_job
Create a new candidate and assign to a job
"""
pass
def test_candidates_all(self):
"""
Test case for candidates_all
Search candidates
"""
pass
def test_candidates_attachments_add(self):
"""
Test case for candidates_attachments_add
Attach files to a candidate.
"""
pass
def test_candidates_attachments_get(self):
"""
Test case for candidates_attachments_get
Get a candidate's attachment.
"""
pass
def test_candidates_attachments_list(self):
"""
Test case for candidates_attachments_list
Get list candidate's attachments.
"""
pass
def test_candidates_delete(self):
"""
Test case for candidates_delete
Delete Candidate
"""
pass
def test_candidates_get(self):
"""
Test case for candidates_get
Get details of a candidate
"""
pass
def test_candidates_onboarding_get(self):
"""
Test case for candidates_onboarding_get
Get Onboarding Status for a candidate
"""
pass
def test_candidates_onboarding_get_for_job(self):
"""
Test case for candidates_onboarding_get_for_job
Get Onboarding Status for a candidate associated with given job
"""
pass
def test_candidates_onboarding_update(self):
"""
Test case for candidates_onboarding_update
Set Onboarding Status for a candidate
"""
pass
def test_candidates_onboarding_update_for_job(self):
"""
Test case for candidates_onboarding_update_for_job
Sets Onboarding Status for a candidate associated with given job
"""
pass
def test_candidates_properties_get(self):
"""
Test case for candidates_properties_get
Get candidate property values for a candidate
"""
pass
def test_candidates_properties_get_for_job(self):
"""
Test case for candidates_properties_get_for_job
Get candidate property values for a candidate's job
"""
pass
def test_candidates_properties_values_update(self):
"""
Test case for candidates_properties_values_update
Add/update candidate property value
"""
pass
def test_candidates_properties_values_update_for_job(self):
"""
Test case for candidates_properties_values_update_for_job
Add/update candidate property value
"""
pass
def test_candidates_resume_add(self):
"""
Test case for candidates_resume_add
Parse a resume, create a candidate and assign to a Talent Pool.
"""
pass
def test_candidates_resume_add_to_job(self):
"""
Test case for candidates_resume_add_to_job
Parse a resume, create a candidate and assign to a job.
"""
pass
def test_candidates_screening_answers_get(self):
"""
Test case for candidates_screening_answers_get
Get candidate screening answers for a candidate's job
"""
pass
def test_candidates_source_update(self):
"""
Test case for candidates_source_update
Update a candidate's source
"""
pass
def test_candidates_status_history_get(self):
"""
Test case for candidates_status_history_get
Get candidate's status history
"""
pass
def test_candidates_status_update(self):
"""
Test case for candidates_status_update
Update a candidate's status
"""
pass
def test_candidates_status_update_primary(self):
"""
Test case for candidates_status_update_primary
Update a candidate's status on primary assignment
"""
pass
def test_candidates_tags_add(self):
"""
Test case for candidates_tags_add
Add tags to a candidate
"""
pass
def test_candidates_tags_delete(self):
"""
Test case for candidates_tags_delete
Delete tags for a candidate
"""
pass
def test_candidates_tags_get(self):
"""
Test case for candidates_tags_get
Get tags for a candidate
"""
pass
def test_candidates_tags_replace(self):
"""
Test case for candidates_tags_replace
Update tags for a candidate
"""
pass
def test_candidates_update(self):
"""
Test case for candidates_update
Update candidate personal information
"""
pass
if __name__ == '__main__':
unittest.main()