summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2020-08-07 19:22:54 -0700
committerGitHub <noreply@github.com>2020-08-07 19:22:54 -0700
commit6c391fac27df828c2d391e560fdc6317b57ff1df (patch)
tree475b8087a7bace2a49c3dcc3a9b152ef18c17e9e
parentc556b1da3dbc8b069dea54d9db239a73076d79d2 (diff)
parent0faa0791c38e7ba4c082a88e1d6a436dc2a2f8b7 (diff)
downloadchef-6c391fac27df828c2d391e560fdc6317b57ff1df.tar.gz
Merge pull request #10280 from chef/fix-powershell-test
Fix broken powershell_script test.
-rw-r--r--spec/unit/provider/powershell_script_spec.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/spec/unit/provider/powershell_script_spec.rb b/spec/unit/provider/powershell_script_spec.rb
index a0f31c10f7..1c49c52160 100644
--- a/spec/unit/provider/powershell_script_spec.rb
+++ b/spec/unit/provider/powershell_script_spec.rb
@@ -32,15 +32,16 @@ describe Chef::Provider::PowershellScript, "action_run" do
describe "#command" do
before(:each) do
- allow(provider).to receive(:basepath).and_return("C:/Windows/system32")
+ allow(provider).to receive(:basepath).and_return("C:\\Windows\\system32")
+ allow(ChefUtils).to receive(:windows?).and_return(true)
end
it "includes the user's flags after the default flags when building the command" do
new_resource.flags = "-InputFormat Fabulous"
- provider.send(:script_file_path=, "C:/Temp/Script.ps1")
+ provider.send(:script_file_path=, "C:\\Temp\\Script.ps1")
expected = <<~CMD.strip
- "C:/Windows/system32/WindowsPowerShell/v1.0/powershell.exe" -NoLogo -NonInteractive -NoProfile -ExecutionPolicy Bypass -InputFormat None -InputFormat Fabulous -File "C:/Temp/Script.ps1"
+ "C:\\Windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe" -NoLogo -NonInteractive -NoProfile -ExecutionPolicy Bypass -InputFormat None -InputFormat Fabulous -File "C:\\Temp\\Script.ps1"
CMD
expect(provider.command).to eq(expected)