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.

config_spec.rb 264B

123456789101112
  1. # frozen_string_literal: true
  2. control 'apache configuration' do
  3. title 'should be valid'
  4. describe command('apachectl -t') do
  5. its('stdout') { should eq '' }
  6. its('stderr') { should include 'Syntax OK' }
  7. its('exit_status') { should eq 0 }
  8. end
  9. end