You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
585 B
21 lines
585 B
require 'rails_helper' |
|
|
|
describe Admin::ReportedStatusesController do |
|
let(:user) { Fabricate(:user, admin: true) } |
|
before do |
|
sign_in user, scope: :user |
|
end |
|
|
|
describe 'DELETE #destroy' do |
|
it 'removes a status' do |
|
report = Fabricate(:report) |
|
status = Fabricate(:status) |
|
allow(RemovalWorker).to receive(:perform_async) |
|
|
|
delete :destroy, params: { report_id: report, id: status } |
|
expect(response).to redirect_to(admin_report_path(report)) |
|
expect(RemovalWorker). |
|
to have_received(:perform_async).with(status.id) |
|
end |
|
end |
|
end
|
|
|