2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
2019-12-04 20:38:33 +05:30
|
|
|
require_relative '../../../../spec/features/clusters/installing_applications_shared_examples'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
describe 'Project-level Cluster Applications', :js do
|
2018-03-17 18:26:18 +05:30
|
|
|
include GoogleApi::CloudPlatformHelpers
|
|
|
|
|
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(user)
|
2018-03-17 18:26:18 +05:30
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'Installing applications' do
|
2019-12-04 20:38:33 +05:30
|
|
|
include_examples "installing applications on a cluster" do
|
|
|
|
let(:cluster_path) { project_cluster_path(project, cluster) }
|
|
|
|
let(:cluster_factory_args) { [projects: [project]] }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|