mirror of
https://github.com/edcommonwealth/Dashboard.git
synced 2026-03-07 13:38:12 -08:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
FactoryBot.define do
|
|
factory :school do
|
|
name { "MyString" }
|
|
dashboard_district { nil }
|
|
description { "MyText" }
|
|
slug { "MyString" }
|
|
qualtrics_code { 1 }
|
|
dese_id { 1 }
|
|
is_hs { false }
|
|
end
|
|
end
|