feat: section détail mensuel dans la page rapports

This commit is contained in:
2026-03-13 14:36:32 +01:00
parent 59d64885d4
commit cc664b3555
2 changed files with 76 additions and 0 deletions

View File

@@ -91,3 +91,11 @@ def test_create_entry_velo_no_motor_vehicle(client, app):
)
assert entry is not None
assert entry.motor_vehicle_id is None
def test_reports_monthly_section(client):
response = client.get("/reports/")
assert response.status_code == 200
assert "Détail mensuel" in response.text
assert "Janvier" in response.text
assert "Décembre" in response.text