10 lines
223 B
Ruby
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
|