Sha256: 85238286f13277791817fd2056ac6b069153d874e74e976c5adc43a5c19152ef
Contents?: true
Size: 662 Bytes
Versions: 5
Compression:
Stored size: 662 Bytes
Contents
require 'spec_helper' set :os, :family => 'arch' describe commands.command_class('file').create do it { should be_an_instance_of(Specinfra::Command::Arch::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
Version data entries
5 entries across 5 versions & 1 rubygems