Add unit tests for station service and enhance documentation
Some checks failed
Backend CI / lint-and-test (push) Failing after 37s

- Introduced unit tests for the station service, covering creation, updating, and archiving of stations.
- Added detailed building block view documentation outlining the architecture of the Rail Game system.
- Created runtime view documentation illustrating key user interactions and system behavior.
- Developed concepts documentation detailing domain models, architectural patterns, and security considerations.
- Updated architecture documentation to reference new detailed sections for building block and runtime views.
This commit is contained in:
2025-10-11 18:52:25 +02:00
parent 2b9877a9d3
commit 615b63ba76
18 changed files with 1662 additions and 443 deletions

View File

@@ -10,6 +10,7 @@ from .auth import (
from .base import (
StationCreate,
StationModel,
StationUpdate,
TrackCreate,
TrackModel,
TrainCreate,
@@ -29,6 +30,7 @@ __all__ = [
"UserPublic",
"StationCreate",
"StationModel",
"StationUpdate",
"TrackCreate",
"TrackModel",
"TrainScheduleCreate",