mirror of
https://github.com/logos-storage/logos-storage-py-api-client.git
synced 2026-01-02 13:33:11 +00:00
53 lines
947 B
Python
53 lines
947 B
Python
|
|
# coding: utf-8
|
||
|
|
|
||
|
|
"""
|
||
|
|
Codex API
|
||
|
|
|
||
|
|
List of endpoints and interfaces available to Codex API users
|
||
|
|
|
||
|
|
The version of the OpenAPI document: 0.0.1
|
||
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||
|
|
|
||
|
|
Do not edit the class manually.
|
||
|
|
""" # noqa: E501
|
||
|
|
|
||
|
|
|
||
|
|
import unittest
|
||
|
|
|
||
|
|
from codex_client.api.node_api import NodeApi
|
||
|
|
|
||
|
|
|
||
|
|
class TestNodeApi(unittest.TestCase):
|
||
|
|
"""NodeApi unit test stubs"""
|
||
|
|
|
||
|
|
def setUp(self) -> None:
|
||
|
|
self.api = NodeApi()
|
||
|
|
|
||
|
|
def tearDown(self) -> None:
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_connect_peer(self) -> None:
|
||
|
|
"""Test case for connect_peer
|
||
|
|
|
||
|
|
Connect to a peer
|
||
|
|
"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_get_peer_id(self) -> None:
|
||
|
|
"""Test case for get_peer_id
|
||
|
|
|
||
|
|
Get Node's PeerID
|
||
|
|
"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
def test_get_spr(self) -> None:
|
||
|
|
"""Test case for get_spr
|
||
|
|
|
||
|
|
Get Node's SPR
|
||
|
|
"""
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == '__main__':
|
||
|
|
unittest.main()
|