2018-09-26 11:08:18 +00:00
|
|
|
FactoryBot.define do
|
|
|
|
factory :notification_factory_renderer, class: NotificationFactory::Renderer do
|
2019-03-27 09:01:36 +00:00
|
|
|
objects {}
|
|
|
|
locale { 'en-en' }
|
|
|
|
template { '' }
|
|
|
|
escape { true }
|
2018-09-26 11:08:18 +00:00
|
|
|
|
2019-02-10 11:01:38 +00:00
|
|
|
initialize_with { new(objects: objects, locale: locale, template: template, escape: escape) }
|
2018-09-26 11:08:18 +00:00
|
|
|
end
|
|
|
|
end
|