change_password_spec.rb 263 B

1234567891011
  1. # frozen_string_literal: true
  2. require 'rails_helper'
  3. RSpec.describe 'The /.well-known/change-password request' do
  4. it 'redirects to the change password page' do
  5. get '/.well-known/change-password'
  6. expect(response).to redirect_to '/auth/edit'
  7. end
  8. end