forked from kubernetes-client/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_events_api.py
More file actions
39 lines (24 loc) · 821 Bytes
/
test_events_api.py
File metadata and controls
39 lines (24 loc) · 821 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
# 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.api.events_api import EventsApi # noqa: E501
from kubernetes.client.rest import ApiException
class TestEventsApi(unittest.TestCase):
"""EventsApi unit test stubs"""
def setUp(self):
self.api = kubernetes.client.api.events_api.EventsApi() # noqa: E501
def tearDown(self):
pass
def test_get_api_group(self):
"""Test case for get_api_group
"""
pass
if __name__ == '__main__':
unittest.main()