mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 21:38:14 -08:00
8 lines
188 B
Ruby
8 lines
188 B
Ruby
FactoryBot.define do
|
|
factory :score do
|
|
average { 1.5 }
|
|
meets_teacher_threshold { false }
|
|
meets_student_threshold { false }
|
|
meets_admin_data_threshold { false }
|
|
end
|
|
end
|