40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Kubernetes
|
|
|
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
|
|
|
|
OpenAPI spec version: release-1.16
|
|
Generated by: https://openapi-generator.tech
|
|
"""
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
|
|
import kubernetes.client
|
|
from kubernetes.client.models.v1_replication_controller_condition import V1ReplicationControllerCondition # noqa: E501
|
|
from kubernetes.client.rest import ApiException
|
|
|
|
|
|
class TestV1ReplicationControllerCondition(unittest.TestCase):
|
|
"""V1ReplicationControllerCondition unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testV1ReplicationControllerCondition(self):
|
|
"""Test V1ReplicationControllerCondition"""
|
|
# FIXME: construct object with mandatory attributes with example values
|
|
# model = kubernetes.client.models.v1_replication_controller_condition.V1ReplicationControllerCondition() # noqa: E501
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|