ESP32 now publishes on broker
This commit is contained in:
52
rpi/api-resources/board_mate_client/test/test_default_api.py
Normal file
52
rpi/api-resources/board_mate_client/test/test_default_api.py
Normal file
@@ -0,0 +1,52 @@
|
||||
# coding: utf-8
|
||||
|
||||
"""
|
||||
boardmate_api API
|
||||
|
||||
boardmate_api API
|
||||
|
||||
The version of the OpenAPI document: 1.0.0
|
||||
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
||||
|
||||
Do not edit the class manually.
|
||||
""" # noqa: E501
|
||||
|
||||
|
||||
import unittest
|
||||
|
||||
from board_mate_client.api.default_api import DefaultApi
|
||||
|
||||
|
||||
class TestDefaultApi(unittest.TestCase):
|
||||
"""DefaultApi unit chesscog-bck stubs"""
|
||||
|
||||
def setUp(self) -> None:
|
||||
self.api = DefaultApi()
|
||||
|
||||
def tearDown(self) -> None:
|
||||
pass
|
||||
|
||||
def test_add_move(self) -> None:
|
||||
"""Test case for add_move
|
||||
|
||||
POST moves/add/{gameId}
|
||||
"""
|
||||
pass
|
||||
|
||||
def test_create_party(self) -> None:
|
||||
"""Test case for create_party
|
||||
|
||||
POST create
|
||||
"""
|
||||
pass
|
||||
|
||||
def test_retrieve_games(self) -> None:
|
||||
"""Test case for retrieve_games
|
||||
|
||||
GET games/{id}
|
||||
"""
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user