|
| 1 | +# coding: utf-8 |
| 2 | + |
| 3 | +""" |
| 4 | + Kubernetes |
| 5 | +
|
| 6 | + No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) |
| 7 | +
|
| 8 | + OpenAPI spec version: unversioned |
| 9 | + |
| 10 | + Generated by: https://github.com/swagger-api/swagger-codegen.git |
| 11 | +
|
| 12 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 13 | + you may not use this file except in compliance with the License. |
| 14 | + You may obtain a copy of the License at |
| 15 | +
|
| 16 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 17 | +
|
| 18 | + Unless required by applicable law or agreed to in writing, software |
| 19 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 20 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 21 | + See the License for the specific language governing permissions and |
| 22 | + limitations under the License. |
| 23 | +""" |
| 24 | + |
| 25 | +from __future__ import absolute_import |
| 26 | + |
| 27 | +import os |
| 28 | +import sys |
| 29 | +import unittest |
| 30 | + |
| 31 | +import k8sclient |
| 32 | +from k8sclient.rest import ApiException |
| 33 | +from k8sclient.apis.apps_v1beta1_api import AppsV1beta1Api |
| 34 | + |
| 35 | + |
| 36 | +class TestAppsV1beta1Api(unittest.TestCase): |
| 37 | + """ AppsV1beta1Api unit test stubs """ |
| 38 | + |
| 39 | + def setUp(self): |
| 40 | + self.api = k8sclient.apis.apps_v1beta1_api.AppsV1beta1Api() |
| 41 | + |
| 42 | + def tearDown(self): |
| 43 | + pass |
| 44 | + |
| 45 | + def test_create_namespaced_stateful_set(self): |
| 46 | + """ |
| 47 | + Test case for create_namespaced_stateful_set |
| 48 | +
|
| 49 | + |
| 50 | + """ |
| 51 | + pass |
| 52 | + |
| 53 | + def test_delete_collection_namespaced_stateful_set(self): |
| 54 | + """ |
| 55 | + Test case for delete_collection_namespaced_stateful_set |
| 56 | +
|
| 57 | + |
| 58 | + """ |
| 59 | + pass |
| 60 | + |
| 61 | + def test_delete_namespaced_stateful_set(self): |
| 62 | + """ |
| 63 | + Test case for delete_namespaced_stateful_set |
| 64 | +
|
| 65 | + |
| 66 | + """ |
| 67 | + pass |
| 68 | + |
| 69 | + def test_get_api_resources(self): |
| 70 | + """ |
| 71 | + Test case for get_api_resources |
| 72 | +
|
| 73 | + |
| 74 | + """ |
| 75 | + pass |
| 76 | + |
| 77 | + def test_list_namespaced_stateful_set(self): |
| 78 | + """ |
| 79 | + Test case for list_namespaced_stateful_set |
| 80 | +
|
| 81 | + |
| 82 | + """ |
| 83 | + pass |
| 84 | + |
| 85 | + def test_list_stateful_set_for_all_namespaces(self): |
| 86 | + """ |
| 87 | + Test case for list_stateful_set_for_all_namespaces |
| 88 | +
|
| 89 | + |
| 90 | + """ |
| 91 | + pass |
| 92 | + |
| 93 | + def test_patch_namespaced_stateful_set(self): |
| 94 | + """ |
| 95 | + Test case for patch_namespaced_stateful_set |
| 96 | +
|
| 97 | + |
| 98 | + """ |
| 99 | + pass |
| 100 | + |
| 101 | + def test_patch_namespaced_stateful_set_status(self): |
| 102 | + """ |
| 103 | + Test case for patch_namespaced_stateful_set_status |
| 104 | +
|
| 105 | + |
| 106 | + """ |
| 107 | + pass |
| 108 | + |
| 109 | + def test_read_namespaced_stateful_set(self): |
| 110 | + """ |
| 111 | + Test case for read_namespaced_stateful_set |
| 112 | +
|
| 113 | + |
| 114 | + """ |
| 115 | + pass |
| 116 | + |
| 117 | + def test_read_namespaced_stateful_set_status(self): |
| 118 | + """ |
| 119 | + Test case for read_namespaced_stateful_set_status |
| 120 | +
|
| 121 | + |
| 122 | + """ |
| 123 | + pass |
| 124 | + |
| 125 | + def test_replace_namespaced_stateful_set(self): |
| 126 | + """ |
| 127 | + Test case for replace_namespaced_stateful_set |
| 128 | +
|
| 129 | + |
| 130 | + """ |
| 131 | + pass |
| 132 | + |
| 133 | + def test_replace_namespaced_stateful_set_status(self): |
| 134 | + """ |
| 135 | + Test case for replace_namespaced_stateful_set_status |
| 136 | +
|
| 137 | + |
| 138 | + """ |
| 139 | + pass |
| 140 | + |
| 141 | + |
| 142 | +if __name__ == '__main__': |
| 143 | + unittest.main() |
0 commit comments