diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2018-07-27 13:03:50 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2018-07-27 13:03:50 +0000 |
commit | 636ea40e182fca92e89facbcb52445fcefef9506 (patch) | |
tree | c555ba8f65dd8c468c0539b32836ad65f67e731b /spec/routing | |
parent | 31044d41a63dd1b8f57df12b864210d84361c219 (diff) | |
parent | a79094b29205929ab78d89e10e768787f7aff7d6 (diff) | |
download | gitlab-ce-636ea40e182fca92e89facbcb52445fcefef9506.tar.gz |
Merge branch '41416-making-instance-wide-data-tools-more-accessible' into 'master'
Resolve "Making instance-wide data tools more accessible"
Closes #41416 and #48507
See merge request gitlab-org/gitlab-ce!20679
Diffstat (limited to 'spec/routing')
-rw-r--r-- | spec/routing/instance_statistics_routing_spec.rb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/spec/routing/instance_statistics_routing_spec.rb b/spec/routing/instance_statistics_routing_spec.rb new file mode 100644 index 00000000000..b94faabfa1d --- /dev/null +++ b/spec/routing/instance_statistics_routing_spec.rb @@ -0,0 +1,11 @@ +# frozen_string_literal: true + +require 'spec_helper' + +describe 'Instance Statistics', 'routing' do + include RSpec::Rails::RequestExampleGroup + + it "routes '/-/instance_statistics' to conversational development index" do + expect(get('/-/instance_statistics')).to redirect_to('/-/instance_statistics/conversational_development_index') + end +end |