item.rb 262 B

12345678910
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. FactoryBot.define do
  3. factory :'checklist/item', aliases: %i[checklist_item] do
  4. checklist
  5. text { Faker::Lorem.unique.sentence }
  6. checked { false }
  7. end
  8. end