Saltstack Official Apache Formula
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
123456789101112 |
- # frozen_string_literal: true
-
- control 'apache configuration' do
- title 'should be valid'
-
- describe command('apachectl -t') do
- its('stdout') { should eq '' }
- its('stderr') { should include 'Syntax OK' }
-
- its('exit_status') { should eq 0 }
- end
- end
|