trabajo-afectivo/spec/factories/macro.rb

12 lines
302 B
Ruby
Raw Normal View History

FactoryBot.define do
factory :macro do
sequence(:name) { |n| "Macro #{n}" }
perform { { 'ticket.state_id' => { 'value' => 1 } } }
ux_flow_next_up { 'next_task' }
note { '' }
active { true }
created_by_id { 1 }
updated_by_id { 1 }
end
end