inspec/test/integration/default/group_spec.rb
2016-03-18 11:30:54 +01:00

59 lines
1.1 KiB
Ruby

# encoding: utf-8
# test root group on linux
if os.linux?
describe group('root') do
it { should exist }
its('gid') { should eq 0 }
end
describe group('noroot') do
it { should_not exist }
its('gid') { should eq nil }
end
elsif os[:family] == 'freebsd'
describe group('wheel') do
it { should exist }
its('gid') { should eq 0 }
end
describe group('root') do
it { should_not exist }
its('gid') { should eq nil }
end
describe group('noroot') do
it { should_not exist }
its('gid') { should eq nil }
end
elsif 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
elsif os.solaris?
describe group('root') 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