Sha256: 5c0a077e53398ab43ca91c239bab30d8a200dc4457e0851e1b626fd5d3b6bbdc
Contents?: true
Size: 455 Bytes
Versions: 8
Compression:
Stored size: 455 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::AIX describe group('root') do it { should exist } its(:command) { should eq "getent group root" } end describe group('invalid-group') do it { should_not exist } end describe group('root') do it { should have_gid 0 } its(:command) { should eq "cat etc/group | grep -w -- \\^root | cut -f 3 -d ':' | grep -w -- 0" } end describe group('root') do it { should_not have_gid 'invalid-gid' } end
Version data entries
8 entries across 8 versions & 1 rubygems