gitlab-org--gitlab-foss/spec/requests/dashboard/projects_controller_spec.rb

12 lines
321 B
Ruby

# 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