nginx-formula/test/integration/default/controls/config.rb
2019-04-12 22:29:20 +01:00

11 lines
267 B
Ruby

control 'Nginx configuration' do
title 'should match desired lines'
describe file('/etc/nginx/nginx.conf') do
it { should be_file }
it { should be_owned_by 'root' }
it { should be_grouped_into 'root' }
its('mode') { should cmp '0644' }
end
end