debian-mirror-gitlab/spec/requests/dashboard/projects_controller_spec.rb

12 lines
321 B
Ruby
Raw Normal View History

2022-01-12 12:59:36 +05:30
# 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