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