Files
danbooru/test/factories/bulk_update_request.rb
evazion 7f90bc4216 BURs: remove ability to skip secondary validations.
Remove the ability to skip secondary validations when creating a BUR.
The only skippable validation that still existed was the requirement
that both tags in an implication must have wiki pages. It's now
mandatory to write wiki pages for tags before you can request an
implication. This doesn't apply to empty tags.
2020-11-12 20:15:14 -06:00

9 lines
185 B
Ruby

FactoryBot.define do
factory(:bulk_update_request) do |f|
user
title {"xxx"}
script {"create alias aaa -> bbb"}
reason { FFaker::Lorem.sentences.join(" ") }
end
end