mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
15 lines
311 B
Ruby
15 lines
311 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryBot.define do
|
|
factory :survey do
|
|
title { 'This is my survey' }
|
|
|
|
factory :conference_survey do
|
|
association :surveyable, factory: :conference
|
|
end
|
|
|
|
factory :registration_survey do
|
|
association :surveyable, factory: :registration
|
|
end
|
|
end
|
|
end
|