renderer.rb 295 B

12345678910
  1. FactoryBot.define do
  2. factory :notification_factory_renderer, class: NotificationFactory::Renderer do
  3. objects {}
  4. locale { 'en-en' }
  5. template { '' }
  6. escape { true }
  7. initialize_with { new(objects: objects, locale: locale, template: template, escape: escape) }
  8. end
  9. end