mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-02 15:31:40 +01:00
19 lines
453 B
Ruby
19 lines
453 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe 'Admin Account Actions' do
|
|
describe 'POST /admin/accounts/:account_id/action' do
|
|
before { sign_in Fabricate(:admin_user) }
|
|
|
|
let(:account) { Fabricate :account }
|
|
|
|
it 'gracefully handles invalid nested params' do
|
|
post admin_account_action_path(account.id, admin_account_action: 'invalid')
|
|
|
|
expect(response)
|
|
.to have_http_status(400)
|
|
end
|
|
end
|
|
end
|