mirror of
https://github.com/inspec/inspec
synced 2024-11-14 08:57:11 +00:00
14 lines
411 B
Ruby
14 lines
411 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::LimitsConf' do
|
|
it 'verify limits.conf config parsing' do
|
|
resource = load_resource('limits_conf')
|
|
_(resource.send('*')).must_equal [['soft', 'core', '0'], ['hard', 'rss', '10000']]
|
|
_(resource.send('ftp')).must_equal [["hard", "nproc", "0"]]
|
|
end
|
|
end
|