trabajo-afectivo/spec/factories/notification_factory/renderer.rb
2021-10-05 08:52:23 +02:00

14 lines
418 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
FactoryBot.define do
factory :notification_factory_renderer, class: 'NotificationFactory::Renderer' do
objects { nil }
locale { 'en-en' }
template { '' }
escape { true }
trusted { false }
initialize_with { new(objects: objects, locale: locale, template: template, escape: escape, trusted: trusted) }
end
end