Use expect
params wrapper for more "auth" and "2FA" "controllers" (#33717)
This commit is contained in:
parent
e44b78413a
commit
a1d9c3fb99
8 changed files with 77 additions and 10 deletions
18
spec/requests/auth/sessions_spec.rb
Normal file
18
spec/requests/auth/sessions_spec.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
require 'rails_helper'
|
||||
|
||||
RSpec.describe 'Auth Sessions' do
|
||||
describe 'POST /auth/sign_in' do
|
||||
# The rack-attack check has issues with the non-nested invalid param used here
|
||||
before { Rack::Attack.enabled = false }
|
||||
after { Rack::Attack.enabled = true }
|
||||
|
||||
it 'gracefully handles invalid nested params' do
|
||||
post user_session_path(user: 'invalid')
|
||||
|
||||
expect(response)
|
||||
.to have_http_status(400)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue