forked from kubernetes-client/python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_logs_api.py
More file actions
52 lines (32 loc) · 965 Bytes
/
test_logs_api.py
File metadata and controls
52 lines (32 loc) · 965 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
45
46
47
48
49
50
51
52
# coding: utf-8
"""
Kubernetes
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
OpenAPI spec version: v1.11.3
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.apis.logs_api import LogsApi
class TestLogsApi(unittest.TestCase):
""" LogsApi unit test stubs """
def setUp(self):
self.api = kubernetes.client.apis.logs_api.LogsApi()
def tearDown(self):
pass
def test_log_file_handler(self):
"""
Test case for log_file_handler
"""
pass
def test_log_file_list_handler(self):
"""
Test case for log_file_list_handler
"""
pass
if __name__ == '__main__':
unittest.main()