2018-02-09 19:07:10 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2016-06-28 18:16:06 +03:00
|
|
|
FactoryGirl.define do
|
|
|
|
|
factory :survey do
|
|
|
|
|
title 'This is my survey'
|
2018-02-08 21:02:16 +02:00
|
|
|
start_date Date.current - 1.day
|
|
|
|
|
end_date Date.current + 1.day
|
|
|
|
|
|
2016-06-28 18:16:06 +03:00
|
|
|
factory :conference_survey do
|
|
|
|
|
association :surveyable, factory: :conference
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
factory :registration_survey do
|
|
|
|
|
association :surveyable, factory: :registration
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|