garage-admin-sdk-generator/python/test/test_node_network_info.py

36 lines
1.2 KiB
Python
Raw Normal View History

2022-09-12 15:02:35 +00:00
"""
Garage Administration API v0+garage-v0.7.3
Administrate your Garage cluster programatically, including status, layout, keys, buckets, and maintainance tasks. *Disclaimer: The API is not stable yet, hence its v0 tag. The API can change at any time, and changes can include breaking backward compatibility. Read the changelog and upgrade your scripts before upgrading. Additionnaly, this specification is very early stage and can contain bugs, especially on error return codes/types that are not tested yet. Do not expect a well finished and polished product!* # noqa: E501
The version of the OpenAPI document: v0.7.3
Generated by: https://openapi-generator.tech
"""
import sys
import unittest
2022-09-13 14:00:03 +00:00
import garage_admin_sdk
from garage_admin_sdk.model.node_network_info import NodeNetworkInfo
2022-09-12 15:02:35 +00:00
class TestNodeNetworkInfo(unittest.TestCase):
"""NodeNetworkInfo unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testNodeNetworkInfo(self):
"""Test NodeNetworkInfo"""
# FIXME: construct object with mandatory attributes with example values
# model = NodeNetworkInfo() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()