inspec/test/integration/default/secpol_spec.rb

12 lines
266 B
Ruby
Raw Normal View History

# encoding: utf-8
2016-08-12 08:19:35 +00:00
unless os.windows?
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__} because we are not on Windows.\033[0m"
return
end
2016-05-10 17:23:11 +00:00
describe security_policy do
its('EnableAdminAccount') { should eq 1 }
its('EnableGuestAccount') { should eq 0 }
end