Forgot to join deps
This commit is contained in:
@@ -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.game.api.game_api import GameApi # noqa: E501
|
||||
|
||||
|
||||
class TestGameApi(unittest.TestCase):
|
||||
"""GameApi unit test stubs"""
|
||||
|
||||
def setUp(self) -> None:
|
||||
self.api = GameApi() # noqa: E501
|
||||
|
||||
def tearDown(self) -> None:
|
||||
pass
|
||||
|
||||
def test_add_move(self) -> None:
|
||||
"""Test case for add_move
|
||||
|
||||
POST moves/add/{gameId} # noqa: E501
|
||||
"""
|
||||
pass
|
||||
|
||||
def test_create_party(self) -> None:
|
||||
"""Test case for create_party
|
||||
|
||||
POST create # noqa: E501
|
||||
"""
|
||||
pass
|
||||
|
||||
def test_retrieve_games(self) -> None:
|
||||
"""Test case for retrieve_games
|
||||
|
||||
GET games/{id} # noqa: E501
|
||||
"""
|
||||
pass
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main()
|
||||
Reference in New Issue
Block a user