Use expect
for admin/
controllers (#33686)
This commit is contained in:
parent
59384282ed
commit
65d9171c7d
57 changed files with 551 additions and 41 deletions
18
spec/requests/admin/account_actions_spec.rb
Normal file
18
spec/requests/admin/account_actions_spec.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
# 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
|
Loading…
Add table
Add a link
Reference in a new issue