inspec/test/unit/resource_limits_conf_test.rb

16 lines
407 B
Ruby
Raw Normal View History

2015-09-05 18:29:34 +00:00
# encoding: utf-8
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::LimitsConf' do
describe 'limits_conf' do
2015-09-22 16:31:21 +00:00
let(:resource) { load_resource('limits_conf') }
2015-09-05 18:29:34 +00:00
it 'verify limits.conf config parsing' do
_(resource.send('*')).must_equal [['soft', 'core', '0'], ['hard', 'rss', '10000']]
_(resource.send('ftp')).must_equal [["hard", "nproc", "0"]]
end
end
end