summaryrefslogtreecommitdiff
path: root/spec/features/profiles/user_manages_applications_spec.rb
blob: e3c4a79743142aa4fe4fbe9e689f6353e0c71773 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User manages applications', feature_category: :user_profile do
  let_it_be(:user) { create(:user) }
  let_it_be(:new_application_path) { applications_profile_path }
  let_it_be(:index_path) { oauth_applications_path }

  before do
    sign_in(user)
  end

  include_examples 'manage applications'
end