Welcome to mirror list, hosted at ThFree Co, Russian Federation.

email_rejection_mailer_spec.rb « mailers « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2ce2e3e1410e75968985e95bc930628674f3f696 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

require 'spec_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