mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-02 23:41:44 +01:00
17 lines
374 B
Ruby
17 lines
374 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe 'Admin Domain Allows' do
|
||
|
describe 'POST /admin/domain_allows' do
|
||
|
before { sign_in Fabricate(:admin_user) }
|
||
|
|
||
|
it 'gracefully handles invalid nested params' do
|
||
|
post admin_domain_allows_path(domain_allow: 'invalid')
|
||
|
|
||
|
expect(response)
|
||
|
.to have_http_status(400)
|
||
|
end
|
||
|
end
|
||
|
end
|