github.com/treeverse/lakefs@v1.24.1-0.20240520134607-95648127bfb0/clients/python/test/test_commits_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.commits_api import CommitsApi  # noqa: E501
    20  from lakefs_sdk.rest import ApiException
    21  
    22  
    23  class TestCommitsApi(unittest.TestCase):
    24      """CommitsApi unit test stubs"""
    25  
    26      def setUp(self):
    27          self.api = lakefs_sdk.api.commits_api.CommitsApi()  # noqa: E501
    28  
    29      def tearDown(self):
    30          pass
    31  
    32      def test_commit(self):
    33          """Test case for commit
    34  
    35          create commit  # noqa: E501
    36          """
    37          pass
    38  
    39      def test_get_commit(self):
    40          """Test case for get_commit
    41  
    42          get commit  # noqa: E501
    43          """
    44          pass
    45  
    46  
    47  if __name__ == '__main__':
    48      unittest.main()