12 lines
430 B
Ruby
12 lines
430 B
Ruby
FactoryBot.define do
|
|
factory :export do
|
|
format { Export.formats.fetch(:csv) }
|
|
statut { Export.statuts.fetch(:tous) }
|
|
time_span_type { Export.time_span_types.fetch(:everything) }
|
|
groupe_instructeurs { [association(:groupe_instructeur)] }
|
|
|
|
after(:build) do |export, _evaluator|
|
|
export.key = Export.generate_cache_key(export.groupe_instructeurs.map(&:id), export.procedure_presentation)
|
|
end
|
|
end
|
|
end
|