2018-02-09 19:07:10 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2018-09-03 20:44:39 +02:00
|
|
|
FactoryBot.define do
|
2016-06-28 18:16:06 +03:00
|
|
|
factory :survey do
|
2018-09-08 03:58:50 +02:00
|
|
|
title { 'This is my survey' }
|
2018-02-08 21:02:16 +02:00
|
|
|
|
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
|