2024-04-29 00:17:15 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-06-17 11:01:41 +02:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :dossier_operation_log do
|
|
|
|
operation { :passer_en_instruction }
|
2023-05-15 12:54:01 +02:00
|
|
|
|
|
|
|
trait :with_serialized do
|
|
|
|
serialized { Rack::Test::UploadedFile.new('spec/fixtures/files/white.png', 'image/png') }
|
|
|
|
end
|
2019-06-17 11:01:41 +02:00
|
|
|
end
|
|
|
|
end
|