Files
danbooru/test/factories/bulk_update_request.rb
2020-05-04 03:39:41 -05:00

10 lines
223 B
Ruby

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