inspec/test/unit/resource_inetd_conf_test.rb

15 lines
396 B
Ruby
Raw Normal View History

2015-09-05 19:23:21 +00:00
# encoding: utf-8
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::InetdConf' do
2015-09-22 16:31:21 +00:00
let(:resource) { load_resource('inetd_config') }
2015-09-05 19:23:21 +00:00
2015-09-22 16:33:05 +00:00
it 'verify limits.conf config parsing' do
_(resource.send('shell')).must_equal nil
_(resource.send('login')).must_equal nil
_(resource.send('ftp')).must_equal %w{stream tcp nowait root /usr/sbin/in.ftpd in.ftpd}
2015-09-05 19:23:21 +00:00
end
end