8 lines
139 B
Ruby
8 lines
139 B
Ruby
FactoryBot.define do
|
|
factory :attestation_template do
|
|
title 'title'
|
|
body 'body'
|
|
footer 'footer'
|
|
activated true
|
|
end
|
|
end
|