-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest_credit_api.py
More file actions
38 lines (23 loc) · 805 Bytes
/
test_credit_api.py
File metadata and controls
38 lines (23 loc) · 805 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.credit_api import CreditApi
class TestCreditApi(unittest.TestCase):
"""CreditApi unit test stubs"""
def setUp(self) -> None:
self.api = CreditApi()
def tearDown(self) -> None:
pass
def test_check_balance_as_an_organization(self) -> None:
"""Test case for check_balance_as_an_organization
GET: View credit and threshold
"""
pass
if __name__ == '__main__':
unittest.main()