Sha256: cfd231bf1adb5c6d88ffa9d3bad2ca0f6686b1f15f2538c9410f94201ce6d17c
Contents?: true
Size: 483 Bytes
Versions: 20
Compression:
Stored size: 483 Bytes
Contents
require 'spec_helper' RSpec.configure do |c| c.os = 'FreeBSD' end describe group('root') do it { should exist } its(:command) { should eq "getent group | grep -wq -- 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 "getent 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
20 entries across 20 versions & 1 rubygems