inspec/test/integration/default/kernel_module_spec.rb

18 lines
303 B
Ruby
Raw Normal View History

2015-10-23 11:58:20 +00:00
# encoding: utf-8
# Test kernel modules on all linux systems
if os.linux?
describe kernel_module('video') do
it { should be_loaded }
end
describe kernel_module('bridge') do
it { should_not be_loaded }
end
describe kernel_module('dhcp') do
it { should_not be_loaded }
end
end