macro.rb 302 B

1234567891011
  1. FactoryBot.define do
  2. factory :macro do
  3. sequence(:name) { |n| "Macro #{n}" }
  4. perform { { 'ticket.state_id' => { 'value' => 1 } } }
  5. ux_flow_next_up { 'next_task' }
  6. note { '' }
  7. active { true }
  8. created_by_id { 1 }
  9. updated_by_id { 1 }
  10. end
  11. end