2023-11-15 13:21:18 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
2024-09-04 05:12:25 +00:00
|
|
|
RSpec.describe 'The /.well-known/change-password request' do
|
2023-11-15 13:21:18 +00:00
|
|
|
it 'redirects to the change password page' do
|
|
|
|
get '/.well-known/change-password'
|
|
|
|
|
|
|
|
expect(response).to redirect_to '/auth/edit'
|
|
|
|
end
|
|
|
|
end
|