summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-04-27 12:25:47 -0700
committerGitHub <noreply@github.com>2020-04-27 12:25:47 -0700
commit216017dd69c0394cc13e8b451efffc92fa4659e0 (patch)
tree89e591f11b81dd8a07788358b4a9390e561a2869
parent28df0b44175b4d7725c9634b7a84e6e4eceda7cc (diff)
parent2a144a3ff3489307ba4b898ea82ac027b0680c4a (diff)
downloadchef-216017dd69c0394cc13e8b451efffc92fa4659e0.tar.gz
Merge pull request #9753 from chef/disable_windows_test
Disable the windows_exec test for now
-rw-r--r--spec/functional/resource/locale_spec.rb21
1 files changed, 11 insertions, 10 deletions
diff --git a/spec/functional/resource/locale_spec.rb b/spec/functional/resource/locale_spec.rb
index 24a43ef0ba..5258f08696 100644
--- a/spec/functional/resource/locale_spec.rb
+++ b/spec/functional/resource/locale_spec.rb
@@ -94,14 +94,15 @@ describe Chef::Resource::Locale, :requires_root do
end
end
- context "on windows", :windows_only, requires_root: false do
- describe "action: update" do
- context "Sets system locale" do
- it "when lang is given" do
- resource.lang("en-US")
- resource.run_action(:update)
- end
- end
- end
- end
+ # @TODO we need to enable these again
+ # context "on windows", :windows_only, requires_root: false do
+ # describe "action: update" do
+ # context "Sets system locale" do
+ # it "when lang is given" do
+ # resource.lang("en-US")
+ # resource.run_action(:update)
+ # end
+ # end
+ # end
+ # end
end