53 lines
951 B
Python
Raw Permalink Normal View History

2024-08-23 16:22:29 +02:00
# 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
2024-12-18 14:37:13 +01:00
from codex_api_client.api.node_api import NodeApi
2024-08-23 16:22:29 +02:00
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()