mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
13 lines
337 B
Ruby
13 lines
337 B
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
require 'helper'
|
|
require 'vulcano/resource'
|
|
|
|
describe 'Vulcano::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
|