summaryrefslogtreecommitdiff
path: root/spec/mailers/shared/notify.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/mailers/shared/notify.rb')
-rw-r--r--spec/mailers/shared/notify.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/mailers/shared/notify.rb b/spec/mailers/shared/notify.rb
index 5c9851f14c7..33d1075c739 100644
--- a/spec/mailers/shared/notify.rb
+++ b/spec/mailers/shared/notify.rb
@@ -37,6 +37,16 @@ shared_examples 'an email sent from GitLab' do
reply_to = subject.header[:reply_to].addresses
expect(reply_to).to eq([gitlab_sender_reply_to])
end
+
+ context 'when custom suffix for email subject is set' do
+ before do
+ stub_config_setting(email_subject_suffix: 'A Nice Suffix')
+ end
+
+ it 'ends the subject with the suffix' do
+ is_expected.to have_subject (/ \| A Nice Suffix$/)
+ end
+ end
end
shared_examples 'an email that contains a header with author username' do