-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_group.py
More file actions
40 lines (28 loc) · 902 Bytes
/
test_group.py
File metadata and controls
40 lines (28 loc) · 902 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
40
"""
Opal API
Your Home For Developer Resources. # noqa: E501
The version of the OpenAPI document: 1.0
Contact: hello@opal.dev
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
import opal_security
from opal_security.models.group_type_enum import GroupTypeEnum
from opal_security.models.visibility_type_enum import VisibilityTypeEnum
globals()['GroupTypeEnum'] = GroupTypeEnum
globals()['VisibilityTypeEnum'] = VisibilityTypeEnum
from opal_security.models.group import Group
class TestGroup(unittest.TestCase):
"""Group unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testGroup(self):
"""Test Group"""
# FIXME: construct object with mandatory attributes with example values
# model = Group() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()