summaryrefslogtreecommitdiff
path: root/spec/unit
diff options
context:
space:
mode:
authorVivek Singh <vivek.singh@msystechnologies.com>2019-02-12 17:47:12 +0530
committerVivek Singh <vivek.singh@msystechnologies.com>2019-02-12 17:47:12 +0530
commit661bb89cad49656711cac0ee40003b4856f999dc (patch)
tree06b40dd4cb16c94835287f4c709b24c7e57dd56f /spec/unit
parentab964df45ad41621a2133a30de113a4cddacaca2 (diff)
downloadchef-661bb89cad49656711cac0ee40003b4856f999dc.tar.gz
Authentication on chocolatey_package
- Add missing options cmd args while fetching choco list. - Fixed rspec. Signed-off-by: Vivek Singh <vivek.singh@msystechnologies.com>
Diffstat (limited to 'spec/unit')
-rw-r--r--spec/unit/provider/package/chocolatey_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/provider/package/chocolatey_spec.rb b/spec/unit/provider/package/chocolatey_spec.rb
index 48f8a562de..0b504b9a35 100644
--- a/spec/unit/provider/package/chocolatey_spec.rb
+++ b/spec/unit/provider/package/chocolatey_spec.rb
@@ -282,7 +282,7 @@ describe Chef::Provider::Package::Chocolatey do
end
it "should pass options into the install command" do
- allow_remote_list(["git"])
+ allow_remote_list(["git"], " -force")
new_resource.options("-force")
provider.load_current_resource
expect(provider).to receive(:shell_out_compacted!).with("#{choco_exe} install -y -force git", { returns: [0], timeout: timeout }).and_return(double)