You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
469 B
18 lines
469 B
# 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
|
|
|