提交 98217bc0 编写于 作者: L Lin Jen-Shin

should_email_no_one -> should_not_email_anyone, feedback:

https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6342/diffs#note_17039876
上级 0a11d531
......@@ -551,7 +551,7 @@ describe Ci::Pipeline, models: true do
shared_examples 'not sending any notification' do
it 'does not send any email' do
should_email_no_one
should_not_email_anyone
end
end
......
......@@ -17,7 +17,7 @@ describe NotificationService, services: true do
it 'sends no emails when no new mentions are present' do
send_notifications
should_email_no_one
should_not_email_anyone
end
it 'emails new mentions with a watch level higher than participant' do
......@@ -27,7 +27,7 @@ describe NotificationService, services: true do
it 'does not email new mentions with a watch level equal to or less than participant' do
send_notifications(@u_participating, @u_mentioned)
should_email_no_one
should_not_email_anyone
end
end
......
......@@ -23,7 +23,7 @@ module EmailHelpers
expect(sent_to_user?(user, recipients)).to be_falsey
end
def should_email_no_one
def should_not_email_anyone
expect(ActionMailer::Base.deliveries).to be_empty
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册