python/kubernetes/test/test_v1_mutating_webhook_configuration.py
2020-04-03 01:46:00 +05:30

40 lines
1.0 KiB
Python

# coding: utf-8
"""
Kubernetes
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
OpenAPI spec version: release-1.16
Generated by: https://openapi-generator.tech
"""
from __future__ import absolute_import
import unittest
import kubernetes.client
from kubernetes.client.models.v1_mutating_webhook_configuration import V1MutatingWebhookConfiguration # noqa: E501
from kubernetes.client.rest import ApiException
class TestV1MutatingWebhookConfiguration(unittest.TestCase):
"""V1MutatingWebhookConfiguration unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testV1MutatingWebhookConfiguration(self):
"""Test V1MutatingWebhookConfiguration"""
# FIXME: construct object with mandatory attributes with example values
# model = kubernetes.client.models.v1_mutating_webhook_configuration.V1MutatingWebhookConfiguration() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()