summaryrefslogtreecommitdiff
path: root/spec/support
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-03-30 12:07:40 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2020-03-30 12:07:40 +0000
commit506d6dcd7c787ba71a8a53102f3d4fdb6adcfa5e (patch)
treeb1d65f48256b1f17d6f47429a65050c5d43f420a /spec/support
parent45b4df3e57c949c88107840c44ccbfaf2eabdf26 (diff)
downloadgitlab-ce-506d6dcd7c787ba71a8a53102f3d4fdb6adcfa5e.tar.gz
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support')
-rw-r--r--spec/support/shared_examples/spam_check_shared_examples.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/spec/support/shared_examples/spam_check_shared_examples.rb b/spec/support/shared_examples/spam_check_shared_examples.rb
deleted file mode 100644
index 3ecae16db39..00000000000
--- a/spec/support/shared_examples/spam_check_shared_examples.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-# frozen_string_literal: true
-
-shared_examples 'akismet spam' do
- context 'when request is missing' do
- subject { described_class.new(spammable: issue, request: nil) }
-
- it "doesn't check as spam" do
- subject
-
- expect(issue).not_to be_spam
- end
- end
-
- context 'when request exists' do
- it 'creates a spam log' do
- expect { subject }
- .to log_spam(title: issue.title, description: issue.description, noteable_type: 'Issue')
- end
- end
-end