inspec/test/unit/resources/inetd_conf_test.rb

16 lines
434 B
Ruby
Raw Normal View History

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