osem-fcy/spec/factories/surveys.rb
2018-09-06 00:42:28 +02:00

17 lines
377 B
Ruby

# frozen_string_literal: true
FactoryBot.define do
factory :survey do
title 'This is my survey'
start_date Date.current - 1.day
end_date Date.current + 1.day
factory :conference_survey do
association :surveyable, factory: :conference
end
factory :registration_survey do
association :surveyable, factory: :registration
end
end
end