2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-15 13:06:44 +00:00
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :'chat/message' do
|
|
|
|
chat_session { create(:'chat/session') }
|
|
|
|
content { 'test 1234' }
|
|
|
|
created_by_id { 1 }
|
|
|
|
end
|
|
|
|
end
|