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