python/kubernetes/test/test_v1_replication_controller.py
2019-07-29 15:51:44 -07:00

45 lines
1018 B
Python

# coding: utf-8
"""
Kubernetes
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
OpenAPI spec version: v1.13.9
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import os
import sys
import unittest
import kubernetes.client
from kubernetes.client.rest import ApiException
from kubernetes.client.models.v1_replication_controller import V1ReplicationController
class TestV1ReplicationController(unittest.TestCase):
""" V1ReplicationController unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testV1ReplicationController(self):
"""
Test V1ReplicationController
"""
# FIXME: construct object with mandatory attributes with example values
#model = kubernetes.client.models.v1_replication_controller.V1ReplicationController()
pass
if __name__ == '__main__':
unittest.main()