-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_candidate_property_definition.py
42 lines (27 loc) · 1.15 KB
/
test_candidate_property_definition.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
# 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.models.candidate_property_definition import CandidatePropertyDefinition
class TestCandidatePropertyDefinition(unittest.TestCase):
""" CandidatePropertyDefinition unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testCandidatePropertyDefinition(self):
"""
Test CandidatePropertyDefinition
"""
model = smartrecruiters_python_client.models.candidate_property_definition.CandidatePropertyDefinition()
if __name__ == '__main__':
unittest.main()