summaryrefslogtreecommitdiff
path: root/spec/requests/dashboard/projects_controller_spec.rb
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