summaryrefslogtreecommitdiff
path: root/spec/mailers/notify_spec.rb
diff options
context:
space:
mode:
authorDavid Padilla <david@easybroker.com>2016-02-29 23:29:20 -0600
committerRémy Coutable <remy@rymai.me>2016-03-25 13:05:15 +0100
commit31e76baf610e1307090a6bac3a7b3d525bce057a (patch)
tree6381eb0aa46cdfb646f93aaa1bfd7b8e5d881333 /spec/mailers/notify_spec.rb
parent63c8a05bf7f18ac4093ece1f08b4b5fd8dba5fac (diff)
downloadgitlab-ce-31e76baf610e1307090a6bac3a7b3d525bce057a.tar.gz
Fix #2364. Fall back to In-Reply-To header when reply key not available
Diffstat (limited to 'spec/mailers/notify_spec.rb')
-rw-r--r--spec/mailers/notify_spec.rb6
1 files changed, 5 insertions, 1 deletions
diff --git a/spec/mailers/notify_spec.rb b/spec/mailers/notify_spec.rb
index 9b47acfe0cd..0f3de33f361 100644
--- a/spec/mailers/notify_spec.rb
+++ b/spec/mailers/notify_spec.rb
@@ -217,7 +217,11 @@ describe Notify do
end
it 'has the correct message-id set' do
- is_expected.to have_header 'Message-ID', "<merge_request_#{merge_request.id}@#{Gitlab.config.gitlab.host}>"
+ is_expected.to have_header 'Message-ID', /<reply\+(.*)@#{Gitlab.config.gitlab.host}>/
+ end
+
+ it 'has the correct references set' do
+ is_expected.to have_header 'References', "<merge_request_#{merge_request.id}@#{Gitlab.config.gitlab.host}>"
end
context 'when enabled email_author_in_body' do