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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSean McGivern <sean@mcgivern.me.uk>2018-07-27 16:03:50 +0300
committerSean McGivern <sean@mcgivern.me.uk>2018-07-27 16:03:50 +0300
commit636ea40e182fca92e89facbcb52445fcefef9506 (patch)
treec555ba8f65dd8c468c0539b32836ad65f67e731b /spec/routing
parent31044d41a63dd1b8f57df12b864210d84361c219 (diff)
parenta79094b29205929ab78d89e10e768787f7aff7d6 (diff)
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.rb11
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