summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorEvan Tschuy <tschuy@osuosl.org>2015-11-10 15:56:38 -0800
committerEvan Tschuy <tschuy@osuosl.org>2015-11-10 15:56:38 -0800
commit7509be4b0085f9e759d3c1461240f6d20eff4138 (patch)
tree60680d212a2004c7b454c7989a8e2e94d6f457c5 /spec
parent6c99e0be2f79f3392fd83149fe03ec57eefef175 (diff)
downloadmixlib-shellout-7509be4b0085f9e759d3c1461240f6d20eff4138.tar.gz
convert environment hash keys to strings
by converting the hash keys to strings, we can use symbols in our environment blocks: environment {FOO: 'bar', SHELL: 'zsh'}
Diffstat (limited to 'spec')
-rw-r--r--spec/mixlib/shellout_spec.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index df9bbbe..7e93054 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -477,6 +477,14 @@ describe Mixlib::ShellOut do
end
end
+ context 'when setting environments with symbols' do
+ let(:options) { { :environment => { SYMBOL: 'cymbal' } } }
+
+ it "should also set the enviroment" do
+ expect(shell_cmd.environment).to eql({'SYMBOL' => 'cymbal'})
+ end
+ end
+
context 'when :environment is set to nil' do
let(:options) { { :environment => nil } }