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

applications_spec.rb « clusters « groups « features « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 324ef24efc4d4f41bdd6fd6b94aff4fdc0c662bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true

require 'spec_helper'
require_relative '../../../../spec/features/clusters/installing_applications_shared_examples'

RSpec.describe 'Group-level Cluster Applications', :js do
  include GoogleApi::CloudPlatformHelpers

  let(:group) { create(:group) }
  let(:user) { create(:user) }

  before do
    group.add_maintainer(user)
    sign_in(user)
  end

  describe 'Installing applications' do
    include_examples "installing applications on a cluster" do
      let(:cluster_path) { group_cluster_path(group, cluster) }
      let(:cluster_factory_args) { [:group, groups: [group]] }
    end
  end
end