-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_access_rules_api.py
More file actions
44 lines (27 loc) · 904 Bytes
/
test_access_rules_api.py
File metadata and controls
44 lines (27 loc) · 904 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
41
42
43
44
# coding: utf-8
"""
Opal API
The Opal API is a RESTful API that allows you to interact with the Opal Security platform programmatically.
The version of the OpenAPI document: 1.0
Contact: hello@opal.dev
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from opal_security.api.access_rules_api import AccessRulesApi
class TestAccessRulesApi(unittest.TestCase):
"""AccessRulesApi unit test stubs"""
def setUp(self) -> None:
self.api = AccessRulesApi()
def tearDown(self) -> None:
pass
def test_get_access_rule(self) -> None:
"""Test case for get_access_rule
"""
pass
def test_update_access_rule(self) -> None:
"""Test case for update_access_rule
"""
pass
if __name__ == '__main__':
unittest.main()