Use expect for admin/ controllers (#33686)

This commit is contained in:
Matt Jankowski 2025-01-27 09:05:16 -05:00 committed by GitHub
parent 59384282ed
commit 65d9171c7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
57 changed files with 551 additions and 41 deletions

View file

@ -0,0 +1,18 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Admin Statuses' do
describe 'POST /admin/accounts/:account_id/statuses/batch' do
before { sign_in Fabricate(:admin_user) }
let(:account) { Fabricate :account }
it 'gracefully handles invalid nested params' do
post batch_admin_account_statuses_path(account.id, admin_status_batch_action: 'invalid')
expect(response)
.to redirect_to(admin_account_statuses_path(account.id))
end
end
end