0
0
Fork 0

Fix duplicate tests (#27395)

This commit is contained in:
Claire 2023-10-13 16:10:43 +02:00 committed by GitHub
parent cad8cc90ba
commit 71cfdd7865
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 94 deletions

View file

@ -33,34 +33,22 @@ RSpec.describe 'Reports' do
it_behaves_like 'forbidden for wrong scope', 'read read:reports'
it 'returns http success' do
subject
expect(response).to have_http_status(200)
end
it 'returns the created report' do
subject
expect(body_as_json).to match(
a_hash_including(
status_ids: [status.id.to_s],
category: category,
comment: 'reasons'
)
)
end
it 'creates a report' do
subject
expect(target_account.targeted_reports).to_not be_empty
end
it 'sends e-mails to admins' do
it 'creates a report', :aggregate_failures do
perform_enqueued_jobs do
subject
expect(response).to have_http_status(200)
expect(body_as_json).to match(
a_hash_including(
status_ids: [status.id.to_s],
category: category,
comment: 'reasons'
)
)
expect(target_account.targeted_reports).to_not be_empty
expect(target_account.targeted_reports.first.comment).to eq 'reasons'
expect(ActionMailer::Base.deliveries.first.to).to eq([admin.email])
end
end
@ -90,15 +78,10 @@ RSpec.describe 'Reports' do
let(:category) { 'violation' }
let(:rule_ids) { [rule.id] }
it 'saves category' do
it 'saves category and rule_ids' do
subject
expect(target_account.targeted_reports.first.violation?).to be true
end
it 'saves rule_ids' do
subject
expect(target_account.targeted_reports.first.rule_ids).to contain_exactly(rule.id)
end
end