mirror of
https://github.com/inspec/inspec
synced 2024-11-10 15:14:23 +00:00
aix group tests
This commit is contained in:
parent
26afecf857
commit
5f7dccc1b4
1 changed files with 17 additions and 0 deletions
|
@ -30,3 +30,20 @@ if os[:family] == 'freebsd'
|
|||
its('gid') { should eq nil }
|
||||
end
|
||||
end
|
||||
|
||||
if os[:family] == 'aix'
|
||||
describe group('system') do
|
||||
it { should exist }
|
||||
its('gid') { should eq 0 }
|
||||
end
|
||||
|
||||
describe group('bin') do
|
||||
it { should exist }
|
||||
its('gid') { should eq 2 }
|
||||
end
|
||||
|
||||
describe group('noroot') do
|
||||
it { should_not exist }
|
||||
its('gid') { should eq nil }
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue