gitlab-org--gitlab-foss/spec/support/shared_examples/helm_generated_script.rb

14 lines
281 B
Ruby
Raw Normal View History

shared_examples 'helm commands' do
describe '#generate_script' do
let(:helm_setup) do
<<~EOS
set -eo pipefail
EOS
end
it 'should return appropriate command' do
expect(subject.generate_script).to eq(helm_setup + commands)
end
end
end