Sha256: 544cbad7f739e8cab04cc6c57faa50f0e43f89ff7a5ce0bd3bb0786954cdcfaa
Contents?: true
Size: 556 Bytes
Versions: 60
Compression:
Stored size: 556 Bytes
Contents
require 'spec_helper' property[:os] = nil set :os, {:family => 'linux'} describe file('/tmp') do it { should be_readable.by_user('mail') } end describe file('/tmp') do it { should be_writable.by_user('mail') } end describe file('/tmp') do it { should be_executable.by_user('mail') } end describe file('/tmp') do it { should be_immutable } end describe file('/tmp') do let(:exit_status) { 0 } let(:stdout) { 'unconfined_u:unconfined_r:unconfined_t:s0' } its(:selinux_label) { should eq 'unconfined_u:unconfined_r:unconfined_t:s0' } end
Version data entries
60 entries across 60 versions & 3 rubygems