You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
420 B
17 lines
420 B
FactoryBot.define do
|
|
factory :survey_item_response do
|
|
likert_score { 1 }
|
|
dashboard_school { nil }
|
|
dashboard_survey_item { nil }
|
|
dashboard_academic_year { nil }
|
|
dashboard_student { nil }
|
|
dashboard_gender { nil }
|
|
dashboard_income { nil }
|
|
dashboard_ell { nil }
|
|
dashboard_sped { nil }
|
|
response_id { "MyString" }
|
|
grade { 1 }
|
|
recorded_date { "2024-01-04 11:21:28" }
|
|
end
|
|
end
|