memos-script/test/test_workspace_service_api.py

41 lines
969 B
Python

# coding: utf-8
"""
api/v2/activity_service.proto
No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) # noqa: E501
OpenAPI spec version: version not set
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import memos
from memos.api.workspace_service_api import WorkspaceServiceApi # noqa: E501
from memos.rest import ApiException
class TestWorkspaceServiceApi(unittest.TestCase):
"""WorkspaceServiceApi unit test stubs"""
def setUp(self):
self.api = WorkspaceServiceApi() # noqa: E501
def tearDown(self):
pass
def test_workspace_service_get_workspace_profile(self):
"""Test case for workspace_service_get_workspace_profile
GetWorkspaceProfile returns the workspace profile. # noqa: E501
"""
pass
if __name__ == '__main__':
unittest.main()