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: 4cd3b6c4f9e43be905d51edfc22b44431a8a7876 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe Dashboard::ProjectsController 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