mirror of
https://github.com/mastodon/mastodon.git
synced 2025-01-24 19:11:44 +01:00
17 lines
358 B
Ruby
17 lines
358 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
require 'rails_helper'
|
||
|
|
||
|
RSpec.describe 'Settings Imports' do
|
||
|
describe 'POST /settings/imports' do
|
||
|
before { sign_in Fabricate(:user) }
|
||
|
|
||
|
it 'gracefully handles invalid nested params' do
|
||
|
post settings_imports_path(form_import: 'invalid')
|
||
|
|
||
|
expect(response)
|
||
|
.to have_http_status(400)
|
||
|
end
|
||
|
end
|
||
|
end
|