trabajo-afectivo/spec/factories/notification_factory/renderer.rb

11 lines
243 B
Ruby
Raw Normal View History

FactoryBot.define do
factory :notification_factory_renderer, class: NotificationFactory::Renderer do
objects {}
locale 'en-en'
template ''
escape true
initialize_with { new(objects, locale, template, escape) }
end
end