54 lines
1.5 KiB
Ruby
54 lines
1.5 KiB
Ruby
|
control "software_installed-7zip" do
|
||
|
title 'Included Default Applications: 7-Zip'
|
||
|
desc '
|
||
|
This test assures that the software application "7-Zip" is installed.
|
||
|
'
|
||
|
|
||
|
describe chocolatey_package('7zip.install') do
|
||
|
it { should be_installed }
|
||
|
end
|
||
|
end
|
||
|
|
||
|
# control "software_installed-dotnetfx" do
|
||
|
# title 'Included Default Applications: .NET'
|
||
|
# desc '
|
||
|
# This test assures that the software application ".NET" is installed.
|
||
|
# '
|
||
|
|
||
|
# describe chocolatey_package('dotnetfx') do
|
||
|
# it { should be_installed }
|
||
|
# end
|
||
|
# end
|
||
|
|
||
|
# control "software_installed-foxitreader" do
|
||
|
# title 'Included Default Applications: Foxit Reader'
|
||
|
# desc '
|
||
|
# This test assures that the software application "Foxit Reader" is installed.
|
||
|
# '
|
||
|
|
||
|
# describe chocolatey_package('foxitreader') do
|
||
|
# it { should be_installed }
|
||
|
# end
|
||
|
# end
|
||
|
|
||
|
# control "software_installed-notepadplusplus" do
|
||
|
# title 'Included Default Applications: Notepad++'
|
||
|
# desc '
|
||
|
# This test assures that the software application "Notepad++" is installed.
|
||
|
# '
|
||
|
|
||
|
# describe chocolatey_package('notepadplusplus') do
|
||
|
# it { should be_installed }
|
||
|
# end
|
||
|
# end
|
||
|
|
||
|
# control "software_installed-putty" do
|
||
|
# title 'Included Default Applications: Putty'
|
||
|
# desc '
|
||
|
# This test assures that the software application "PuTTy" is installed.
|
||
|
# '
|
||
|
|
||
|
# describe chocolatey_package('putty') do
|
||
|
# it { should be_installed }
|
||
|
# end
|
||
|
# end
|