FactoryBot.define do
  factory :service_opportunity, class: 'Service::Opportunity' do
    association :school
    association :group, factory: :service_group
    name { Faker::Lorem.word }
    description { Faker::Lorem.sentence }
  end
end
