summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--spec/mailers/notify_spec.rb11
-rw-r--r--spec/mailers/shared/notify.rb4
2 files changed, 11 insertions, 4 deletions
diff --git a/spec/mailers/notify_spec.rb b/spec/mailers/notify_spec.rb
index cd8578b6f49..03e0bfd3614 100644
--- a/spec/mailers/notify_spec.rb
+++ b/spec/mailers/notify_spec.rb
@@ -1094,4 +1094,15 @@ describe Notify do
is_expected.to have_body_text /#{diff_path}/
end
end
+
+ describe 'email has correct subject' do
+ let(:gitlab_subject_suffix) { Gitlab.config.gitlab.email_subject_suffix }
+
+ it 'has correct suffix' do
+ if gitlab_subject_suffix.length > 0
+ is_expected.to have_subject gitlab_subject_suffix
+ end
+ end
+ end
+
end
diff --git a/spec/mailers/shared/notify.rb b/spec/mailers/shared/notify.rb
index de1d8995534..5c9851f14c7 100644
--- a/spec/mailers/shared/notify.rb
+++ b/spec/mailers/shared/notify.rb
@@ -2,7 +2,6 @@ shared_context 'gitlab email notification' do
let(:gitlab_sender_display_name) { Gitlab.config.gitlab.email_display_name }
let(:gitlab_sender) { Gitlab.config.gitlab.email_from }
let(:gitlab_sender_reply_to) { Gitlab.config.gitlab.email_reply_to }
- let(:gitlab_subject_suffix) { Gitlab.config.gitlab.email_subject_suffix }
let(:recipient) { create(:user, email: 'recipient@example.com') }
let(:project) { create(:project) }
let(:new_user_address) { 'newguy@example.com' }
@@ -32,9 +31,6 @@ shared_examples 'an email sent from GitLab' do
sender = subject.header[:from].addrs[0]
expect(sender.display_name).to eq(gitlab_sender_display_name)
expect(sender.address).to eq(gitlab_sender)
- if gitlab_subject_suffix.length > 0
- is_expected.to have_subject gitlab_subject_suffix
- end
end
it 'has a Reply-To address' do