github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python-legacy/test/test_setup.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 sys 13 import unittest 14 15 import lakefs_client 16 from lakefs_client.model.access_key_credentials import AccessKeyCredentials 17 globals()['AccessKeyCredentials'] = AccessKeyCredentials 18 from lakefs_client.model.setup import Setup 19 20 21 class TestSetup(unittest.TestCase): 22 """Setup unit test stubs""" 23 24 def setUp(self): 25 pass 26 27 def tearDown(self): 28 pass 29 30 def testSetup(self): 31 """Test Setup""" 32 # FIXME: construct object with mandatory attributes with example values 33 # model = Setup() # noqa: E501 34 pass 35 36 37 if __name__ == '__main__': 38 unittest.main()