diff options
author | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-07-25 17:36:08 +0200 |
---|---|---|
committer | Bob Van Landuyt <bob@vanlanduyt.co> | 2018-07-27 15:54:28 +0200 |
commit | 00b5f5475f7f35620d01033711cdb8e2f5fff5c8 (patch) | |
tree | 128cc055ea7a8233ca23b0b78fd2a7dc646d063b /spec/routing | |
parent | 702a09c18365cbaa88edb8396339a61a73f29d23 (diff) | |
download | gitlab-ce-00b5f5475f7f35620d01033711cdb8e2f5fff5c8.tar.gz |
Spec instance statistics
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 |