inspec/test/unit/resources/limits_conf_test.rb
Miah Johnson 2a1b1d8e88 Remove all leading newlines.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-31 11:43:44 -07:00

11 lines
376 B
Ruby

require 'helper'
require 'inspec/resource'
require 'inspec/resources/limits_conf'
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