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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-28 12:08:05 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-28 12:08:05 +0300
commit4c788f43cbcd70bcceb4e40891d329952aa016d0 (patch)
tree9cd741579d79355a207ab74d37f26af768281fa0 /spec/workers/new_note_worker_spec.rb
parent616129d41caac06a1ea0b0a36d1b3018eabac833 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/workers/new_note_worker_spec.rb')
-rw-r--r--spec/workers/new_note_worker_spec.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/spec/workers/new_note_worker_spec.rb b/spec/workers/new_note_worker_spec.rb
index cf350fbcf2a..57269355180 100644
--- a/spec/workers/new_note_worker_spec.rb
+++ b/spec/workers/new_note_worker_spec.rb
@@ -49,4 +49,14 @@ describe NewNoteWorker do
described_class.new.perform(unexistent_note_id)
end
end
+
+ context 'when note is with review' do
+ it 'does not create a new note notification' do
+ note = create(:note, :with_review)
+
+ expect_any_instance_of(NotificationService).not_to receive(:new_note)
+
+ subject.perform(note.id)
+ end
+ end
end