summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian C. Dunn <jdunn@secondmarket.com>2012-12-18 13:14:28 -0500
committerJulian C. Dunn <jdunn@opscode.com>2013-12-04 10:29:00 -0500
commit280dcb0c5d13a4ac276b8b680b095d050bc06ded (patch)
treedc74cbb5982df4be4807679d2493bceed6bb88cc
parent73d847fd4e51a46d7f79d0bc847da91988834ce5 (diff)
downloadmixlib-shellout-280dcb0c5d13a4ac276b8b680b095d050bc06ded.tar.gz
[MIXLIB-6] Fix test due to /bin being a symlink on Fedora. Use /tmp instead
-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 71ecfef..68225c6 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