debian-mirror-gitlab/spec/routing/instance_statistics_routing_spec.rb
2018-11-18 11:00:15 +05:30

12 lines
348 B
Ruby

# 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