FactoryBot.define do
  factory :user do
    association :school
    first_name { Faker::Name.first_name }
    last_name { Faker::Name.last_name }
  end
end
