add forgotten check

This commit is contained in:
imperosol
2026-04-10 18:53:29 +02:00
parent 19c752ecd9
commit f54dd469fc
3 changed files with 72 additions and 49 deletions

View File

@@ -10,7 +10,7 @@ def test_order_auto():
"""Test that newly created roles are put in the right place."""
club = baker.make(Club)
recipe = Recipe(ClubRole, club=club, name=seq("role "))
# bulk create initial roles
# bulk create initial roles (1 presidency, 1 board, 1 member)
roles = recipe.make(
is_board=iter([True, True, False]),
is_presidency=iter([True, False, False]),