forked from kubernetes-client/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_extensions_v1beta1_scale.py
More file actions
44 lines (29 loc) · 1010 Bytes
/
test_extensions_v1beta1_scale.py
File metadata and controls
44 lines (29 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# 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.models.extensions_v1beta1_scale import ExtensionsV1beta1Scale
class TestExtensionsV1beta1Scale(unittest.TestCase):
""" ExtensionsV1beta1Scale unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testExtensionsV1beta1Scale(self):
"""
Test ExtensionsV1beta1Scale
"""
# FIXME: construct object with mandatory attributes with example values
#model = kubernetes.client.models.extensions_v1beta1_scale.ExtensionsV1beta1Scale()
pass
if __name__ == '__main__':
unittest.main()