inspec/test/unit/resources/inetd_conf_test.rb

16 lines
434 B
Ruby
Raw Normal View History

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
resource = load_resource('inetd_conf')
_(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