* Survey period constraints * Add abilities * Enforce required questions * Update survey_submssion updated_at * Do a full match of possible answer and user reply
8 lines
119 B
Ruby
8 lines
119 B
Ruby
# frozen_string_literal: true
|
|
|
|
FactoryGirl.define do
|
|
factory :survey_reply do
|
|
user
|
|
survey_question
|
|
end
|
|
end
|