Add and enhance unit tests: include tests for ProfileService, GameService, and AnalysisService; integrate comprehensive mock data and fixtures. Refactor imports and naming conventions in tests for consistency. Augment .env.example with monitoring and logging configurations.

This commit is contained in:
Yûki VACHOT 2025-11-29 02:27:15 +01:00
parent 8cc53378b7
commit 1b7963c239
9 changed files with 1814 additions and 17 deletions

View file

@ -6,8 +6,8 @@ instances when interacting with API responses or performing operations like
serialization. The tests cover both standard and edge cases.
"""
from geoguessr_mcp.models.Game import Game
from geoguessr_mcp.models.RoundGuess import RoundGuess
from geoguessr_mcp.models.game import Game
from geoguessr_mcp.models.round_guess import RoundGuess
class TestGame: