4ec16912b8
- rewords examples starting with 'should' - rewords examples starting with 'it' Note: I had to manually fixup "onlies" to "only"
13 lines
290 B
Ruby
13 lines
290 B
Ruby
shared_examples 'helm commands' do
|
|
describe '#generate_script' do
|
|
let(:helm_setup) do
|
|
<<~EOS
|
|
set -xeo pipefail
|
|
EOS
|
|
end
|
|
|
|
it 'returns appropriate command' do
|
|
expect(subject.generate_script.strip).to eq((helm_setup + commands).strip)
|
|
end
|
|
end
|
|
end
|