mirror of
https://github.com/inspec/inspec
synced 2024-12-30 15:03:29 +00:00
9b7c292d4c
Helps testing and lots of other things if we only use $stdout/$stderr. STDOUT/STDERR should only be used to restore the globals. Signed-off-by: Ryan Davis <zenspider@chef.io>
33 lines
871 B
Ruby
33 lines
871 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_identifier({ user: 'Administrator' }) do
|
|
it { should exist }
|
|
its('sid') { should match %r{S-1-5-21.+-500} }
|
|
end
|
|
|
|
describe security_identifier({ unspecified: 'Administrator' }) do
|
|
it { should exist }
|
|
its('sid') { should match %r{S-1-5-21.+-500} }
|
|
end
|
|
|
|
describe security_identifier({ group: 'Administrator' }) do
|
|
it { should_not exist }
|
|
its('sid') { should be nil }
|
|
end
|
|
|
|
describe security_identifier({ group: 'Administrators' }) do
|
|
its('sid') { should eq 'S-1-5-32-544' }
|
|
end
|
|
|
|
describe security_identifier({ unspecified: 'Administrators' }) do
|
|
its('sid') { should eq 'S-1-5-32-544' }
|
|
end
|
|
|
|
describe security_identifier({ user: 'Administrators' }) do
|
|
it { should_not exist }
|
|
its('sid') { should be nil }
|
|
end
|