osem-fcy/spec/factories/surveys.rb
Andrew Kvalheim 51e65003bd Add failing tests for survey creation and response
Removes optional attributes from default survey factory.
2022-03-16 13:37:00 -07:00

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