forked from DevCycleHQ/python-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_devcycle_api.py
More file actions
61 lines (40 loc) · 1.34 KB
/
Copy pathtest_devcycle_api.py
File metadata and controls
61 lines (40 loc) · 1.34 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
# coding: utf-8
"""
DevCycle Bucketing API
Documents the DevCycle Bucketing API which provides and API interface to User Bucketing and for generated SDKs. # noqa: E501
OpenAPI spec version: 1.0.0
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import devcycle_python_sdk
from devcycle_python_sdk.api.devcycle_api import DevcycleApi # noqa: E501
from devcycle_python_sdk.rest import ApiException
class TestDevcycleApi(unittest.TestCase):
"""DevcycleApi unit test stubs"""
def setUp(self):
self.api = DevcycleApi() # noqa: E501
def tearDown(self):
pass
def test_get_features(self):
"""Test case for get_features
Get all features by key for user data # noqa: E501
"""
pass
def test_get_variable_by_key(self):
"""Test case for get_variable_by_key
Get variable by key for user data # noqa: E501
"""
pass
def test_get_variables(self):
"""Test case for get_variables
Get all variables by key for user data # noqa: E501
"""
pass
def test_post_events(self):
"""Test case for post_events
Post events to DevCycle for user # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()