diff options
author | sersut <serdar@opscode.com> | 2014-06-23 16:23:23 -0700 |
---|---|---|
committer | sersut <serdar@opscode.com> | 2014-06-24 10:45:02 -0700 |
commit | 202240a2d3db468a00d12de4edcf10a57629374d (patch) | |
tree | 15a1d3cf10fd730a2af68774fe2415873c7aad2b /spec/unit/provider/mount | |
parent | cb99452d29a5de8198278a5b40e441b697e56ffb (diff) | |
download | chef-202240a2d3db468a00d12de4edcf10a57629374d.tar.gz |
Misc spec fixes for windows.
Diffstat (limited to 'spec/unit/provider/mount')
-rw-r--r-- | spec/unit/provider/mount/solaris_spec.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/spec/unit/provider/mount/solaris_spec.rb b/spec/unit/provider/mount/solaris_spec.rb index e7dd17c746..5d328c2edc 100644 --- a/spec/unit/provider/mount/solaris_spec.rb +++ b/spec/unit/provider/mount/solaris_spec.rb @@ -19,7 +19,9 @@ require 'spec_helper' require 'ostruct' -describe Chef::Provider::Mount::Solaris do +# Do not run these tests on windows because some path handling +# code is not implemented to handle windows paths. +describe Chef::Provider::Mount::Solaris, :unix_only do let(:node) { Chef::Node.new } let(:events) { Chef::EventDispatch::Dispatcher.new } |