summaryrefslogtreecommitdiff
path: root/spec
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2014-04-08 12:38:06 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2014-04-08 12:38:06 -0700
commit8abee21f98f7431e8448e2017a2f9172b7f17d76 (patch)
tree17c5635dbc0a1366885f89fb67b97672802ed4e5 /spec
parentce267095a24e255c9a670a55adb3e60903e05c9c (diff)
downloadmixlib-shellout-8abee21f98f7431e8448e2017a2f9172b7f17d76.tar.gz
marking some unix_only tests unix_only
Diffstat (limited to 'spec')
-rw-r--r--spec/mixlib/shellout_spec.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/mixlib/shellout_spec.rb b/spec/mixlib/shellout_spec.rb
index 276adbf..ac5b19d 100644
--- a/spec/mixlib/shellout_spec.rb
+++ b/spec/mixlib/shellout_spec.rb
@@ -797,7 +797,7 @@ describe Mixlib::ShellOut do
end
end
- context "when running a command that doesn't exist" do
+ context "when running a command that doesn't exist", :unix_only do
let(:cmd) { "/bin/this-is-not-a-real-command" }
@@ -864,7 +864,7 @@ describe Mixlib::ShellOut do
end
- context 'with subprocess that takes longer than timeout' do
+ context 'with subprocess that takes longer than timeout', :unix_only do
def ruby_wo_shell(code)
parts = %w[ruby]
parts << "--disable-gems" if ruby_19?