FactoryBot.define do
  factory :training_video, class: 'Training::Video' do
    association :category, factory: :training_category
    name { Faker::Lorem.word }
    description { Faker::Lorem.sentence }
    url { Faker::Internet.url }
  end
end
