summaryrefslogtreecommitdiff
path: root/spec/routing/instance_statistics_routing_spec.rb
blob: 7793c5cce71ef150234732761693451d7c275190 (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 score" do
    expect(get('/-/instance_statistics')).to redirect_to('/-/instance_statistics/dev_ops_score')
  end
end