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

init_command_spec.rb « helm « kubernetes « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 89e36a298f83efca6bd5cf2edc56c12351e250de (plain)
1
2
3
4
5
6
7
8
9
10
require 'spec_helper'

describe Gitlab::Kubernetes::Helm::InitCommand do
  let(:application) { create(:clusters_applications_helm) }
  let(:commands) { 'helm init >/dev/null' }

  subject { described_class.new(application.name) }

  it_behaves_like 'helm commands'
end