trabajo-afectivo/spec/factories/scheduler.rb

21 lines
659 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
FactoryBot.define do
factory :scheduler do
sequence(:name) { |n| "Testscheduler#{n}" }
last_run { Time.zone.now }
pid { 1337 }
prio { 1 }
status { 'ok' }
active { true }
period { 10.minutes }
running { false }
note { 'test' }
updated_by_id { 1 }
created_by_id { 1 }
created_at { 1 }
updated_at { 1 }
add_attribute(:method) { 'test' }
end
end