You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
956 B

2 years ago
  1. # coding: utf-8
  2. """
  3. Seaweedfs Master Server API
  4. The Seaweedfs Master Server API allows you to store blobs # noqa: E501
  5. The version of the OpenAPI document: 3.43.0
  6. Generated by: https://openapi-generator.tech
  7. """
  8. from __future__ import absolute_import
  9. import unittest
  10. import openapi_client
  11. from openapi_client.api.default_api import DefaultApi # noqa: E501
  12. from openapi_client.rest import ApiException
  13. class TestDefaultApi(unittest.TestCase):
  14. """DefaultApi unit test stubs"""
  15. def setUp(self):
  16. self.api = openapi_client.api.default_api.DefaultApi() # noqa: E501
  17. def tearDown(self):
  18. pass
  19. def test_dir_assign(self):
  20. """Test case for dir_assign
  21. Assign a file key # noqa: E501
  22. """
  23. pass
  24. def test_dir_lookup(self):
  25. """Test case for dir_lookup
  26. Lookup volume # noqa: E501
  27. """
  28. pass
  29. if __name__ == '__main__':
  30. unittest.main()