summaryrefslogtreecommitdiff
path: root/spec/routing/projects/security/configuration_controller_routing_spec.rb
blob: c2b10a49dead734879561a8f859fcd371224ba41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Projects::Security::ConfigurationController, 'routing' do
  let(:base_params) { { namespace_id: 'gitlab', project_id: 'gitlabhq' } }

  before do
    allow(Project).to receive(:find_by_full_path).with('gitlab/gitlabhq', any_args).and_return(true)
  end

  it 'routes to #show' do
    expect(get('/gitlab/gitlabhq/-/security/configuration')).to route_to('projects/security/configuration#show', namespace_id: 'gitlab', project_id: 'gitlabhq')
  end
end