mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-09 07:18:13 -07: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
|