2019-10-11 22:02:46 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-07-10 22:22:37 +02:00
|
|
|
control 'users configuration' do
|
|
|
|
title 'should match desired lines'
|
|
|
|
|
|
|
|
describe file('/custom/buser') do
|
|
|
|
its('type') { should eq :directory }
|
|
|
|
it { should be_owned_by 'buser' }
|
|
|
|
it { should be_grouped_into 'primarygroup' }
|
|
|
|
its('mode') { should cmp '0750' }
|
|
|
|
end
|
|
|
|
end
|