mirror of
https://github.com/inspec/inspec
synced 2024-11-27 15:10:44 +00:00
659b4b373a
Signed-off-by: Miah Johnson <miah@chia-pet.org>
12 lines
317 B
Ruby
12 lines
317 B
Ruby
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::KernelParameter' do
|
|
it 'verify kernel_parameter parsing' do
|
|
resource = load_resource('kernel_parameter', 'net.ipv4.conf.all.forwarding')
|
|
_(resource.value).must_equal 1
|
|
end
|
|
end
|