inspec/test/unit/resource_limits_conf_test.rb

14 lines
365 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
2015-09-22 16:31:21 +00:00
let(:resource) { load_resource('limits_conf') }
2015-09-05 18:29:34 +00:00
2015-09-22 16:33:05 +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"]]
2015-09-05 18:29:34 +00:00
end
end