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