demarches-normaliennes/spec/factories/contact_form.rb

15 lines
299 B
Ruby
Raw Normal View History

2024-07-30 18:26:53 +02:00
# frozen_string_literal: true
FactoryBot.define do
factory :contact_form do
user { nil }
email { 'test@example.com' }
dossier_id { nil }
subject { 'Test Subject' }
text { 'Test Content' }
question_type { 'lost_user' }
tags { ['test tag'] }
phone { nil }
end
end