fuel-library/deployment/puppet/xinetd/spec/classes/xinetd_init_spec.rb

10 lines
219 B
Ruby

require 'spec_helper'
describe 'xinetd' do
it {
should contain_package('xinetd')
should contain_file('/etc/xinetd.conf')
should contain_service('xinetd').with_restart('/etc/init.d/xinetd reload')
}
end