12 lines
348 B
Ruby
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
|