2020-05-01 12:34:13 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe Oauth::AuthorizedApplicationsController do
|
2020-05-01 12:34:13 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:guest) { create(:user) }
|
|
|
|
let(:application) { create(:oauth_application, owner: guest) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'GET #index' do
|
|
|
|
it 'responds with 404' do
|
|
|
|
get :index
|
|
|
|
|
|
|
|
expect(response).to have_gitlab_http_status(:not_found)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|