Welcome to mirror list, hosted at ThFree Co, Russian Federation.

user_manages_applications_spec.rb « profiles « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c76ef2613fdd4128dda2dee64912e1ae3b488d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'User manages applications' do
  let_it_be(:user) { create(:user) }
  let_it_be(:new_application_path) { applications_profile_path }

  before do
    sign_in(user)
  end

  include_examples 'manage applications'
end