mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
22 lines
381 B
Ruby
22 lines
381 B
Ruby
FactoryBot.define do
|
|
factory :respondent do
|
|
dashboard_school { nil }
|
|
dashboard_academic_year { nil }
|
|
total_students { 1 }
|
|
total_teachers { 1.5 }
|
|
pk { 1 }
|
|
k { 1 }
|
|
one { 1 }
|
|
two { 1 }
|
|
three { 1 }
|
|
four { 1 }
|
|
five { 1 }
|
|
six { 1 }
|
|
seven { 1 }
|
|
eight { 1 }
|
|
nine { 1 }
|
|
ten { 1 }
|
|
eleven { 1 }
|
|
twelve { 1 }
|
|
end
|
|
end
|