2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-12 14:17:19 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'User manages applications' do
|
2021-08-13 08:10:58 -04:00
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:new_application_path) { applications_profile_path }
|
2021-11-04 11:10:58 -04:00
|
|
|
let_it_be(:index_path) { oauth_applications_path }
|
2018-02-12 14:17:19 -05:00
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
2021-08-13 08:10:58 -04:00
|
|
|
include_examples 'manage applications'
|
2018-02-12 14:17:19 -05:00
|
|
|
end
|