55 lines
1.4 KiB
Python
55 lines
1.4 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
api/v1/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.markdown_service_api import MarkdownServiceApi # noqa: E501
|
|
from memos.rest import ApiException
|
|
|
|
|
|
class TestMarkdownServiceApi(unittest.TestCase):
|
|
"""MarkdownServiceApi unit test stubs"""
|
|
|
|
def setUp(self):
|
|
self.api = MarkdownServiceApi() # noqa: E501
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_markdown_service_get_link_metadata(self):
|
|
"""Test case for markdown_service_get_link_metadata
|
|
|
|
GetLinkMetadata returns metadata for a given link. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_markdown_service_parse_markdown(self):
|
|
"""Test case for markdown_service_parse_markdown
|
|
|
|
Parses the given markdown content and returns a list of nodes. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
def test_markdown_service_restore_markdown(self):
|
|
"""Test case for markdown_service_restore_markdown
|
|
|
|
Restores the given nodes to markdown content. # noqa: E501
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|