123456789101112131415161718 |
- 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
|