2015-09-05 21:23:21 +02:00
|
|
|
# encoding: utf-8
|
2015-10-06 18:55:44 +02:00
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
2015-09-05 21:23:21 +02:00
|
|
|
|
|
|
|
require 'helper'
|
2015-10-26 04:04:18 +01:00
|
|
|
require 'inspec/resource'
|
2015-09-05 21:23:21 +02:00
|
|
|
|
2015-10-26 04:04:18 +01:00
|
|
|
describe 'Inspec::Resources::InetdConf' do
|
2015-09-22 18:33:05 +02:00
|
|
|
it 'verify limits.conf config parsing' do
|
2015-10-26 16:21:51 +01:00
|
|
|
resource = load_resource('inetd_conf')
|
2017-06-11 06:16:10 -04:00
|
|
|
_(resource.send('shell')).must_be_nil
|
|
|
|
_(resource.send('login')).must_be_nil
|
2015-09-22 18:33:05 +02:00
|
|
|
_(resource.send('ftp')).must_equal %w{stream tcp nowait root /usr/sbin/in.ftpd in.ftpd}
|
2015-09-05 21:23:21 +02:00
|
|
|
end
|
|
|
|
end
|