zrok/sdk/python/src/test/test_environment_api.py
2025-03-04 20:10:37 -05:00

44 lines
739 B
Python

# coding: utf-8
"""
zrok
zrok client access
The version of the OpenAPI document: 1.0.0
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from zrok_api.api.environment_api import EnvironmentApi
class TestEnvironmentApi(unittest.TestCase):
"""EnvironmentApi unit test stubs"""
def setUp(self) -> None:
self.api = EnvironmentApi()
def tearDown(self) -> None:
pass
def test_disable(self) -> None:
"""Test case for disable
"""
pass
def test_enable(self) -> None:
"""Test case for enable
"""
pass
if __name__ == '__main__':
unittest.main()