debian-mirror-gitlab/spec/features/profiles/user_manages_applications_spec.rb

15 lines
285 B
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-27 19:54:05 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'User manages applications' do
2021-10-27 15:23:28 +05:30
let_it_be(:user) { create(:user) }
let_it_be(:new_application_path) { applications_profile_path }
2018-03-27 19:54:05 +05:30
before do
sign_in(user)
end
2021-10-27 15:23:28 +05:30
include_examples 'manage applications'
2018-03-27 19:54:05 +05:30
end