1234567891011121314151617181920 |
- # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
- FactoryBot.define do
- factory :checklist do
- name { '' }
- sorted_item_ids { [] }
- ticket
- transient do
- item_count { 5 }
- end
- after(:create) do |checklist, context|
- next if context.item_count.blank?
- create_list(:checklist_item, context.item_count, checklist: checklist)
- end
- end
- end
|