2022-01-12 12:59:36 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2023-03-04 22:38:38 +05:30
|
|
|
RSpec.describe Dashboard::ProjectsController, feature_category: :projects do
|
2022-01-12 12:59:36 +05:30
|
|
|
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
|