2018-01-23 17:15:42 +01:00
|
|
|
FactoryBot.define do
|
2016-05-20 15:39:17 +02:00
|
|
|
factory :assign_to do
|
2020-04-23 11:52:21 +02:00
|
|
|
after(:build) do |assign_to, evaluator|
|
|
|
|
if evaluator.groupe_instructeur.persisted?
|
|
|
|
assign_to.groupe_instructeur = evaluator.groupe_instructeur
|
|
|
|
else
|
|
|
|
assign_to.groupe_instructeur = assign_to.procedure.defaut_groupe_instructeur
|
|
|
|
end
|
2019-08-26 15:26:30 +02:00
|
|
|
end
|
2016-05-20 15:39:17 +02:00
|
|
|
end
|
|
|
|
end
|