summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsersut <serdar@opscode.com>2012-12-04 15:47:20 -0800
committersersut <serdar@opscode.com>2012-12-04 16:02:07 -0800
commit703ed50c0fcce8b054fc90cebaa2a8962c8a8b30 (patch)
tree65dd5335069068ed0148849398ea50fd7571e64d
parent6e298e33702934c743d9e9f875e8c8f0c7e9b30e (diff)
downloadchef-703ed50c0fcce8b054fc90cebaa2a8962c8a8b30.tar.gz
Marking more tests not to run on Win2k3
-rw-r--r--chef/spec/unit/provider/link_spec.rb2
-rw-r--r--chef/spec/unit/provider/remote_directory_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/chef/spec/unit/provider/link_spec.rb b/chef/spec/unit/provider/link_spec.rb
index bb3f01abbe..171e21171c 100644
--- a/chef/spec/unit/provider/link_spec.rb
+++ b/chef/spec/unit/provider/link_spec.rb
@@ -25,7 +25,7 @@ if Chef::Platform.windows?
require 'chef/win32/file' #probably need this in spec_helper
end
-describe Chef::Resource::Link do
+describe Chef::Resource::Link, :not_supported_on_win2k3 do
let(:provider) do
node = Chef::Node.new
@events = Chef::EventDispatch::Dispatcher.new
diff --git a/chef/spec/unit/provider/remote_directory_spec.rb b/chef/spec/unit/provider/remote_directory_spec.rb
index 444d7584e8..821349e524 100644
--- a/chef/spec/unit/provider/remote_directory_spec.rb
+++ b/chef/spec/unit/provider/remote_directory_spec.rb
@@ -177,7 +177,7 @@ describe Chef::Provider::RemoteDirectory do
::File.exist?(@destination_dir + '/a/multiply/nested/directory/qux.txt').should be_false
end
- it "removes directory symlinks properly" do
+ it "removes directory symlinks properly", :not_supported_on_win2k3 do
symlinked_dir_path = @destination_dir + '/symlinked_dir'
@provider.action = :create
@provider.run_action