otwarchive-symphonyarchive/factories/abuse_reports.rb

11 lines
322 B
Ruby
Raw Permalink Normal View History

2026-03-11 22:22:11 +00:00
require 'faker'
FactoryBot.define do
factory :abuse_report do
email { Faker::Internet.email }
url { "http://archiveofourown.org/tags/2000%20AD%20(Comics)/works" }
comment { Faker::Lorem.paragraph(sentence_count: 1) }
summary { Faker::Lorem.sentence(word_count: 1) }
language { "Francais" }
end
end