summaryrefslogtreecommitdiff
path: root/spec/mailers/email_rejection_mailer_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mailers/email_rejection_mailer_spec.rb')
-rw-r--r--spec/mailers/email_rejection_mailer_spec.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/spec/mailers/email_rejection_mailer_spec.rb b/spec/mailers/email_rejection_mailer_spec.rb
new file mode 100644
index 00000000000..bbe0a50ae8e
--- /dev/null
+++ b/spec/mailers/email_rejection_mailer_spec.rb
@@ -0,0 +1,16 @@
+# frozen_string_literal: true
+
+require 'rails_helper'
+
+describe EmailRejectionMailer do
+ include EmailSpec::Matchers
+
+ describe '#rejection' do
+ let(:raw_email) { 'From: someone@example.com\nraw email here' }
+
+ subject { described_class.rejection('some rejection reason', raw_email) }
+
+ it_behaves_like 'appearance header and footer enabled'
+ it_behaves_like 'appearance header and footer not enabled'
+ end
+end