Welcome to mirror list, hosted at ThFree Co, Russian Federation.

projects_controller_spec.rb « dashboard « requests « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 752799196c9e441442adae6521f7c19f0e2f4a0d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Dashboard::ProjectsController, feature_category: :projects do
  context 'token authentication' do
    it_behaves_like 'authenticates sessionless user for the request spec', 'index atom', public_resource: false do
      let(:url) { dashboard_projects_url(:atom) }
    end
  end
end