2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-06-01 12:20:20 +00:00
|
|
|
|
2018-09-26 11:08:18 +00:00
|
|
|
FactoryBot.define do
|
2020-11-24 16:20:57 +00:00
|
|
|
factory :notification_factory_renderer, class: 'NotificationFactory::Renderer' do
|
2021-09-23 10:04:18 +00:00
|
|
|
objects { nil }
|
2019-03-27 09:01:36 +00:00
|
|
|
locale { 'en-en' }
|
|
|
|
template { '' }
|
|
|
|
escape { true }
|
2021-09-23 10:04:18 +00:00
|
|
|
trusted { false }
|
2018-09-26 11:08:18 +00:00
|
|
|
|
2021-09-23 10:04:18 +00:00
|
|
|
initialize_with { new(objects: objects, locale: locale, template: template, escape: escape, trusted: trusted) }
|
2018-09-26 11:08:18 +00:00
|
|
|
end
|
|
|
|
end
|