inspec/test/unit/resources/kernel_parameter_test.rb
Miah Johnson 6c19e81a06 Remove authors tags from source files.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-28 12:47:39 -07:00

10 lines
262 B
Ruby

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