debian-mirror-gitlab/spec/support/shared_examples/spam_check_shared_examples.rb
2020-03-13 15:44:24 +05:30

21 lines
480 B
Ruby

# 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