2
0

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
57 changed files with 551 additions and 41 deletions

View File

@@ -0,0 +1,16 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Admin Webhooks' do
describe 'POST /admin/webhooks' do
before { sign_in Fabricate(:admin_user) }
it 'gracefully handles invalid nested params' do
post admin_webhooks_path(webhook: 'invalid')
expect(response)
.to have_http_status(400)
end
end
end