mirror of
https://github.com/inspec/inspec
synced 2024-12-17 00:23:15 +00:00
2a1b1d8e88
Signed-off-by: Miah Johnson <miah@chia-pet.org>
9 lines
248 B
Ruby
9 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
|