# coding: utf-8 """ Kubernetes No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) OpenAPI spec version: v1.13.4 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.apis.custom_objects_api import CustomObjectsApi class TestCustomObjectsApi(unittest.TestCase): """ CustomObjectsApi unit test stubs """ def setUp(self): self.api = kubernetes.client.apis.custom_objects_api.CustomObjectsApi() def tearDown(self): pass def test_create_cluster_custom_object(self): """ Test case for create_cluster_custom_object """ pass def test_create_namespaced_custom_object(self): """ Test case for create_namespaced_custom_object """ pass def test_delete_cluster_custom_object(self): """ Test case for delete_cluster_custom_object """ pass def test_delete_namespaced_custom_object(self): """ Test case for delete_namespaced_custom_object """ pass def test_get_cluster_custom_object(self): """ Test case for get_cluster_custom_object """ pass def test_get_cluster_custom_object_scale(self): """ Test case for get_cluster_custom_object_scale """ pass def test_get_cluster_custom_object_status(self): """ Test case for get_cluster_custom_object_status """ pass def test_get_namespaced_custom_object(self): """ Test case for get_namespaced_custom_object """ pass def test_get_namespaced_custom_object_scale(self): """ Test case for get_namespaced_custom_object_scale """ pass def test_get_namespaced_custom_object_status(self): """ Test case for get_namespaced_custom_object_status """ pass def test_list_cluster_custom_object(self): """ Test case for list_cluster_custom_object """ pass def test_list_namespaced_custom_object(self): """ Test case for list_namespaced_custom_object """ pass def test_patch_cluster_custom_object(self): """ Test case for patch_cluster_custom_object """ pass def test_patch_cluster_custom_object_scale(self): """ Test case for patch_cluster_custom_object_scale """ pass def test_patch_cluster_custom_object_status(self): """ Test case for patch_cluster_custom_object_status """ pass def test_patch_namespaced_custom_object(self): """ Test case for patch_namespaced_custom_object """ pass def test_patch_namespaced_custom_object_scale(self): """ Test case for patch_namespaced_custom_object_scale """ pass def test_patch_namespaced_custom_object_status(self): """ Test case for patch_namespaced_custom_object_status """ pass def test_replace_cluster_custom_object(self): """ Test case for replace_cluster_custom_object """ pass def test_replace_cluster_custom_object_scale(self): """ Test case for replace_cluster_custom_object_scale """ pass def test_replace_cluster_custom_object_status(self): """ Test case for replace_cluster_custom_object_status """ pass def test_replace_namespaced_custom_object(self): """ Test case for replace_namespaced_custom_object """ pass def test_replace_namespaced_custom_object_scale(self): """ Test case for replace_namespaced_custom_object_scale """ pass def test_replace_namespaced_custom_object_status(self): """ Test case for replace_namespaced_custom_object_status """ pass if __name__ == '__main__': unittest.main()