2015-09-05 19:23:21 +00:00
|
|
|
# encoding: utf-8
|
2015-10-06 16:55:44 +00:00
|
|
|
# author: Christoph Hartmann
|
|
|
|
# author: Dominik Richter
|
2015-09-05 19:23:21 +00:00
|
|
|
|
|
|
|
require 'helper'
|
2015-10-26 03:04:18 +00:00
|
|
|
require 'inspec/resource'
|
2015-09-05 19:23:21 +00:00
|
|
|
|
2015-10-26 03:04:18 +00:00
|
|
|
describe 'Inspec::Resources::InetdConf' do
|
2015-09-22 16:33:05 +00:00
|
|
|
it 'verify limits.conf config parsing' do
|
2015-10-26 15:21:51 +00:00
|
|
|
resource = load_resource('inetd_conf')
|
2017-06-11 10:16:10 +00:00
|
|
|
_(resource.send('shell')).must_be_nil
|
|
|
|
_(resource.send('login')).must_be_nil
|
2015-09-22 16:33:05 +00:00
|
|
|
_(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
|