inspec/test/unit/resources/limits_conf_test.rb

15 lines
413 B
Ruby
Raw Normal View History

2015-09-05 18:29:34 +00:00
# encoding: utf-8
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-09-05 18:29:34 +00:00
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::LimitsConf' do
2015-09-22 16:33:05 +00:00
it 'verify limits.conf config parsing' do
2015-10-12 11:21:50 +00:00
resource = load_resource('limits_conf')
2015-09-22 16:33:05 +00:00
_(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