117 lines
2.2 KiB
Python
117 lines
2.2 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Kubernetes
|
|
|
|
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
|
|
OpenAPI spec version: v1.9.3
|
|
|
|
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_namespaced_custom_object(self):
|
|
"""
|
|
Test case for get_namespaced_custom_object
|
|
|
|
|
|
"""
|
|
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_replace_cluster_custom_object(self):
|
|
"""
|
|
Test case for replace_cluster_custom_object
|
|
|
|
|
|
"""
|
|
pass
|
|
|
|
def test_replace_namespaced_custom_object(self):
|
|
"""
|
|
Test case for replace_namespaced_custom_object
|
|
|
|
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|