# Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/ FactoryBot.define do factory :ticket_shared_draft_start, class: 'Ticket::SharedDraftStart' do name { Faker::Name.unique.name } group content { { content: true } } updated_by_id { 1 } created_by_id { 1 } trait :with_inline_image do content do { body: 'text and ', title: '123', } end end end end