2018-07-25 11:36:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'Instance Statistics', 'routing' do
|
|
|
|
include RSpec::Rails::RequestExampleGroup
|
|
|
|
|
2019-12-03 13:06:49 -05:00
|
|
|
it "routes '/-/instance_statistics' to dev ops score" do
|
|
|
|
expect(get('/-/instance_statistics')).to redirect_to('/-/instance_statistics/dev_ops_score')
|
2018-07-25 11:36:08 -04:00
|
|
|
end
|
|
|
|
end
|