demarches-normaliennes/spec/factories/attestation_template.rb

9 lines
155 B
Ruby
Raw Normal View History

2018-01-23 17:15:42 +01:00
FactoryBot.define do
factory :attestation_template do
2018-09-04 16:46:48 +02:00
title { 'title' }
body { 'body' }
footer { 'footer' }
activated { true }
end
end