trabajo-afectivo/spec/factories/macro.rb

14 lines
268 B
Ruby
Raw Normal View History

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