python/kubernetes/test/test_v1beta1_api_service_status.py
Mehdy Bohlool 917ec63d51 Support both TPR and CRD with custom objects spec (#283)
* Add ability to use local gen repo for testing

* Update generated client
2017-07-07 10:26:25 -07:00

43 lines
925 B
Python

# coding: utf-8
"""
Kubernetes
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
OpenAPI spec version: v1.7.1
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.v1beta1_api_service_status import V1beta1APIServiceStatus
class TestV1beta1APIServiceStatus(unittest.TestCase):
""" V1beta1APIServiceStatus unit test stubs """
def setUp(self):
pass
def tearDown(self):
pass
def testV1beta1APIServiceStatus(self):
"""
Test V1beta1APIServiceStatus
"""
model = kubernetes.client.models.v1beta1_api_service_status.V1beta1APIServiceStatus()
if __name__ == '__main__':
unittest.main()