1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
require 'spec_helper'
set :os, {:family => 'aix'}
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('/etc/passwd') do
it { should be_mode 644 }
end
describe file('/etc/passwd') do
it { should be_owned_by 'root' }
end
describe file('/etc/passwd') do
it { should be_grouped_into 'root' }
end
|