aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/fixtures/dev.sql
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2024-08-05 21:52:31 +0900
committernsfisis <nsfisis@gmail.com>2024-08-05 21:52:31 +0900
commitb80e2cd128ad90d9fbd9367ab95d5a1883456a8a (patch)
treea14e731c78235e9844baf8a5c81c9d68c1d2edd8 /backend/fixtures/dev.sql
parent4bd7cb8d5e02187d30918fa09e98e61396827154 (diff)
downloadiosdc-japan-2025-albatross-b80e2cd128ad90d9fbd9367ab95d5a1883456a8a.tar.gz
iosdc-japan-2025-albatross-b80e2cd128ad90d9fbd9367ab95d5a1883456a8a.tar.zst
iosdc-japan-2025-albatross-b80e2cd128ad90d9fbd9367ab95d5a1883456a8a.zip
chore(backend): update fixtures
Diffstat (limited to 'backend/fixtures/dev.sql')
-rw-r--r--backend/fixtures/dev.sql10
1 files changed, 7 insertions, 3 deletions
diff --git a/backend/fixtures/dev.sql b/backend/fixtures/dev.sql
index e8b8716..89f709a 100644
--- a/backend/fixtures/dev.sql
+++ b/backend/fixtures/dev.sql
@@ -20,7 +20,8 @@ VALUES
('TEST problem 3', 'This is TEST problem 3'),
('TEST problem 4', 'This is TEST problem 4'),
('TEST problem 5', 'This is TEST problem 5'),
- ('TEST problem 6', 'This is TEST problem 6');
+ ('TEST problem 6', 'This is TEST problem 6'),
+ ('TEST problem 7', 'This is TEST problem 7');
INSERT INTO games
(game_type, state, display_name, duration_seconds, problem_id)
@@ -30,7 +31,8 @@ VALUES
('1v1', 'finished', 'TEST game 3', 180, 3),
('multiplayer', 'waiting_start', 'TEST game 4', 180, 4),
('multiplayer', 'closed', 'TEST game 5', 180, 5),
- ('multiplayer', 'finished', 'TEST game 6', 180, 6);
+ ('multiplayer', 'finished', 'TEST game 6', 180, 6),
+ ('multiplayer', 'waiting_entries', 'TEST game 7', 180, 7);
INSERT INTO game_players
(game_id, user_id)
@@ -46,9 +48,11 @@ VALUES
(5, 1),
(5, 2),
(6, 1),
- (6, 2);
+ (6, 2),
+ (7, 1);
INSERT INTO testcases
(problem_id, stdin, stdout)
VALUES
(4, '', '42'),
+ (7, '', '42');