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.
9 lines
185 B
Ruby
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
|