Rewritten most of the frontend to use Redux.

Also, lots of code cleanup, especially in frontend.
This commit is contained in:
2017-03-13 12:25:44 +01:00
parent bfdcb87cef
commit 0451cdbbed
38 changed files with 1302 additions and 410 deletions

View File

@@ -86,6 +86,8 @@ class Test_GetAPIv1Players(BaseQ3StatsWebAppTestCase):
rsp = self.client.get('/api/v1/players/Player 1/game/game1')
assert rsp.status_code == 200
assert rsp.json['game'] == 'game1'
assert rsp.json['player'] == 'Player 1'
assert rsp.json['map'] == 'Q3DM7'
assert rsp.json['items'] == {'YA': 1}

View File