github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/test/test_health_check_api.py (about) 1 # coding: utf-8 2 3 """ 4 lakeFS API 5 6 lakeFS HTTP API 7 8 The version of the OpenAPI document: 1.0.0 9 Contact: services@treeverse.io 10 Generated by OpenAPI Generator (https://openapi-generator.tech) 11 12 Do not edit the class manually. 13 """ # noqa: E501 14 15 16 import unittest 17 18 import lakefs_sdk 19 from lakefs_sdk.api.health_check_api import HealthCheckApi # noqa: E501 20 from lakefs_sdk.rest import ApiException 21 22 23 class TestHealthCheckApi(unittest.TestCase): 24 """HealthCheckApi unit test stubs""" 25 26 def setUp(self): 27 self.api = lakefs_sdk.api.health_check_api.HealthCheckApi() # noqa: E501 28 29 def tearDown(self): 30 pass 31 32 def test_health_check(self): 33 """Test case for health_check 34 35 """ 36 pass 37 38 39 if __name__ == '__main__': 40 unittest.main()