mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
14 lines
396 B
Ruby
14 lines
396 B
Ruby
# encoding: utf-8
|
|
|
|
require 'helper'
|
|
require 'vulcano/resource'
|
|
|
|
describe 'Vulcano::Resources::InetdConf' do
|
|
let(:resource) { load_resource('inetd_config') }
|
|
|
|
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}
|
|
end
|
|
end
|