inspec/test/integration/default/controls/secpol_spec.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

10 lines
248 B
Ruby

unless os.windows?
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__} because we are not on Windows.\033[0m"
return
end
describe security_policy do
its('EnableAdminAccount') { should eq 1 }
its('EnableGuestAccount') { should eq 0 }
end