debian-mirror-gitlab/spec/requests/dashboard/projects_controller_spec.rb
2023-03-04 22:38:38 +05:30

11 lines
350 B
Ruby

# 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