summaryrefslogtreecommitdiff
path: root/spec/routing/instance_statistics_routing_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/routing/instance_statistics_routing_spec.rb')
-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