otwarchive-sunsetarchive/factories/archive_faqs.rb
2026-03-17 01:16:49 -04:00

18 lines
345 B
Ruby
Executable file

require "faker"
FactoryBot.define do
sequence(:faq_title) do |n|
"The #{n} FAQ"
end
factory :archive_faq do
title { generate(:faq_title) }
end
factory :question do
question { Faker::Lorem.sentence }
anchor { Faker::Lorem.word }
content { Faker::Lorem.paragraph }
screencast { Faker::Internet.url }
end
end