2018-01-23 17:15:42 +01:00
|
|
|
FactoryBot.define do
|
2017-06-08 14:16:48 +02:00
|
|
|
factory :attestation_template do
|
2018-09-04 16:46:48 +02:00
|
|
|
title { 'title' }
|
|
|
|
body { 'body' }
|
|
|
|
footer { 'footer' }
|
|
|
|
activated { true }
|
2017-06-08 14:16:48 +02:00
|
|
|
end
|
2019-08-27 17:42:52 +02:00
|
|
|
|
|
|
|
trait :with_files do
|
|
|
|
logo { Rack::Test::UploadedFile.new("./spec/fixtures/files/logo_test_procedure.png", 'image/png') }
|
|
|
|
signature { Rack::Test::UploadedFile.new("./spec/fixtures/files/logo_test_procedure.png", 'image/png') }
|
|
|
|
end
|
2017-06-08 14:16:48 +02:00
|
|
|
end
|