aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/test_unit/mailer/templates/preview.rb
blob: ac146441457816528d929a0bd713500c3b3b38c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<% module_namespacing do -%>
class <%= class_name %>Preview < ActionMailer::Preview
<% actions.each do |action| -%>

  def <%= action %>
    <%= class_name %>.<%= action %>
  end
<% end -%>

end
<% end -%>