forked from DevCycleHQ/python-server-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_user_data.py
More file actions
39 lines (25 loc) · 925 Bytes
/
Copy pathtest_user_data.py
File metadata and controls
39 lines (25 loc) · 925 Bytes
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
# 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.models.user_data import UserData # noqa: E501
from devcycle_python_sdk.rest import ApiException
class TestUserData(unittest.TestCase):
"""UserData unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testUserData(self):
"""Test UserData"""
# FIXME: construct object with mandatory attributes with example values
# model = devcycle_python_sdk.models.user_data.UserData() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()