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

8 lines
149 B
Ruby
Executable file

require "faker"
FactoryBot.define do
factory :known_issue do
title { Faker::Lorem.sentence }
content { Faker::Lorem.paragraph }
end
end