05/23 Add Pick 5, Millionair Balls, etc

This commit is contained in:
2026-05-23 17:04:40 -04:00
parent b5e03fbf10
commit c792d9878e
10 changed files with 302 additions and 50 deletions
+4 -4
View File
@@ -42,15 +42,15 @@ def _mm_id(tmp_db):
# GAMES
# ══════════════════════════════════════════════════════════════════════════════
def test_get_all_games_returns_two(tmp_db):
def test_get_all_games_returns_five(tmp_db):
games = get_all_games()
assert len(games) == 2
assert len(games) == 5
def test_get_all_games_active_only(tmp_db):
"""active_only=True should return 2 by default (both active)."""
"""active_only=True should return all 5 seeded games (all active by default)."""
games = get_all_games(active_only=True)
assert len(games) == 2
assert len(games) == 5
def test_get_game_by_name_powerball(tmp_db):