add integration test for group

This commit is contained in:
Christoph Hartmann 2015-10-23 22:26:31 +02:00
parent a407e3b6ce
commit a199796b5e

View file

@ -0,0 +1,32 @@
# 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
end
if 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
end