-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_auth_api.py
More file actions
38 lines (23 loc) · 761 Bytes
/
test_auth_api.py
File metadata and controls
38 lines (23 loc) · 761 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
# coding: utf-8
"""
Infrahub-API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
The version of the OpenAPI document: 1.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from hyperstack.api.auth_api import AuthApi
class TestAuthApi(unittest.TestCase):
"""AuthApi unit test stubs"""
def setUp(self) -> None:
self.api = AuthApi()
def tearDown(self) -> None:
pass
def test_auth_user_information(self) -> None:
"""Test case for auth_user_information
Get me information
"""
pass
if __name__ == '__main__':
unittest.main()