-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_api_key_api.py
More file actions
45 lines (28 loc) · 884 Bytes
/
test_api_key_api.py
File metadata and controls
45 lines (28 loc) · 884 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
45
# 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.api_key_api import ApiKeyApi
class TestApiKeyApi(unittest.TestCase):
"""ApiKeyApi unit test stubs"""
def setUp(self) -> None:
self.api = ApiKeyApi()
def tearDown(self) -> None:
pass
def test_generate_api_key(self) -> None:
"""Test case for generate_api_key
Generate API Key
"""
pass
def test_get_api_key(self) -> None:
"""Test case for get_api_key
Get API Key
"""
pass
if __name__ == '__main__':
unittest.main()