FactoryBot.define do
  factory :library_item_type, class: 'Library::ItemType' do
    association :school
    name { Faker::Lorem.word }
    description { Faker::Lorem.sentence }
  end
end
