metasploitable3/chef/cookbooks/metasploitable/test/windows/boxstarter.rb

13 lines
347 B
Ruby
Raw Normal View History

2017-07-06 05:25:40 +02:00
control "boxstarter" do
title "Check BoxStarter"
desc "Check if BoxStarter is installed successfully"
describe file('C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter') do
it { should exist }
end
describe file('C:\\Users\\vagrant\\AppData\\Roaming\\Boxstarter\\BoxstarterShell.ps1') do
it { should exist }
end
end