debian-mirror-gitlab/spec/features/profiles/user_manages_applications_spec.rb
2023-03-04 22:38:38 +05:30

15 lines
364 B
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'User manages applications', feature_category: :users 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