48 lines
1.2 KiB
Python
48 lines
1.2 KiB
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_setting_service_api import WorkspaceSettingServiceApi # noqa: E501
|
|
from memos.rest import ApiException
|
|
|
|
|
|
class TestWorkspaceSettingServiceApi(unittest.TestCase):
|
|
"""WorkspaceSettingServiceApi unit test stubs"""
|
|
|
|
def setUp(self):
|
|
self.api = WorkspaceSettingServiceApi() # noqa: E501
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_workspace_setting_service_get_workspace_setting(self):
|
|
"""Test case for workspace_setting_service_get_workspace_setting
|
|
|
|
GetWorkspaceSetting returns the setting by name. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_workspace_setting_service_set_workspace_setting(self):
|
|
"""Test case for workspace_setting_service_set_workspace_setting
|
|
|
|
SetWorkspaceSetting updates the setting. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|