2019-02-27 13:02:16 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :macro do
|
|
|
|
sequence(:name) { |n| "Macro #{n}" }
|
2019-03-27 09:01:36 +00:00
|
|
|
perform { {} }
|
2019-02-27 13:02:16 +00:00
|
|
|
ux_flow_next_up { 'next_task' }
|
|
|
|
note { '' }
|
|
|
|
active { true }
|
|
|
|
created_by_id { 1 }
|
|
|
|
updated_by_id { 1 }
|
|
|
|
end
|
|
|
|
end
|