0
0
mirror of https://github.com/saltstack-formulas/users-formula.git synced 2024-12-03 18:48:23 +01:00
users-formula/test/integration/default/controls/config_spec.rb

11 lines
283 B
Ruby
Raw Normal View History

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