40 lines
938 B
Python
40 lines
938 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Kubernetes
|
|
|
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
|
|
|
|
OpenAPI spec version: v1.15.6
|
|
Generated by: https://openapi-generator.tech
|
|
"""
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import unittest
|
|
|
|
import kubernetes.client
|
|
from kubernetes.client.models.v1_env_from_source import V1EnvFromSource # noqa: E501
|
|
from kubernetes.client.rest import ApiException
|
|
|
|
|
|
class TestV1EnvFromSource(unittest.TestCase):
|
|
"""V1EnvFromSource unit test stubs"""
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def testV1EnvFromSource(self):
|
|
"""Test V1EnvFromSource"""
|
|
# FIXME: construct object with mandatory attributes with example values
|
|
# model = kubernetes.client.models.v1_env_from_source.V1EnvFromSource() # noqa: E501
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|