summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorJulian C. Dunn <jdunn@secondmarket.com>2012-12-18 13:14:28 -0500
committeradamedx <adamed@opscode.com>2014-04-01 13:43:54 -0700
commit1d288ff413e21ab20090592331cb81366186349d (patch)
tree90e90b589a3bdff39deaf66f132a2283f7df2f52 /spec
parent6fc39b300e98ebc55a40850eafac9c4b592ae4d7 (diff)
downloadmixlib-shellout-1d288ff413e21ab20090592331cb81366186349d.tar.gz
[MIXLIB-6] Fix test due to /bin being a symlink on Fedora. Use /tmp instead
Diffstat (limited to 'spec')
-rw-r--r--spec/mixlib/shellout_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 3be0d27..949f386 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -344,7 +344,7 @@ describe Mixlib::ShellOut do
let(:options) { { :cwd => cwd } }
context 'when running under Unix', :unix_only do
- let(:cwd) { '/bin' }
+ let(:cwd) { '/tmp' }
let(:cmd) { 'pwd' }
it "should chdir to the working directory" do