mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
17 lines
389 B
Ruby
17 lines
389 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
|