Skip to content

Instantly share code, notes, and snippets.

@arpanlepcha
Forked from palkan/mailers_preview_spec.rb
Created July 9, 2022 01:10
Show Gist options
  • Save arpanlepcha/ee79f47d3bd8759c8b5aff903785b36d to your computer and use it in GitHub Desktop.
Save arpanlepcha/ee79f47d3bd8759c8b5aff903785b36d to your computer and use it in GitHub Desktop.
mailers_preview_spec.rb
# frozen_string_literal: true
require "rails_helper"
# Automatically smoke-test all mailer previews
describe "/rails/mailers" do
subject { response }
ActionMailer::Preview.all.each do |preview|
next if preview.emails.empty?
describe "/#{preview.preview_name}" do
preview.emails.each do |email|
specify "/#{email}" do
get "/rails/mailers/#{preview.preview_name}/#{email}"
is_expected.to be_successful
end
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment