Welcome to mirror list, hosted at ThFree Co, Russian Federation.

well_known_routing_spec.rb « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4e77a0695367600d149edc35f087319fd5ffb20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'well-known URLs', feature_category: :system_access do
  describe '/.well-known/change-password' do
    it 'redirects to edit profile password path' do
      get('/.well-known/change-password')

      expect(response).to redirect_to(edit_profile_password_path)
    end
  end
end