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

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

require 'spec_helper'

RSpec.describe 'Instance Statistics', 'routing' do
  include RSpec::Rails::RequestExampleGroup

  it "routes '/-/instance_statistics' to dev ops report" do
    expect(get('/-/instance_statistics')).to redirect_to('/admin/dev_ops_report')
  end
end