Sha256: 8d83a1ed79b1387f65752242adf4128cbaca5c64500457135cbb70e661bc8181
Contents?: true
Size: 725 Bytes
Versions: 5
Compression:
Stored size: 725 Bytes
Contents
require 'spec_helper' set :os, :family => 'redhat' describe commands.command_class('file').create do it { should be_an_instance_of(Specinfra::Command::Redhat::Base::File) } end describe file('/tmp') do it { should be_readable.by_user('mail') } end describe file('/tmp') do it { should_not be_readable.by_user('invalid-user') } end describe file('/tmp') do it { should be_writable.by_user('mail') } end describe file('/tmp') do it { should_not be_writable.by_user('invalid-user') } end describe file('/tmp') do it { should be_executable.by_user('mail') } end describe file('/tmp') do it { should_not be_executable.by_user('invalid-user') } end describe file('/tmp') do it { should be_immutable } end
Version data entries
5 entries across 5 versions & 1 rubygems