mirror of
https://github.com/inspec/inspec
synced 2024-11-10 23:24:18 +00:00
11 lines
266 B
Ruby
11 lines
266 B
Ruby
# encoding: utf-8
|
|
|
|
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
|