mirror of
https://github.com/inspec/inspec
synced 2024-11-22 20:53:11 +00:00
Fixes indentation of kernal_module example
Signed-off-by: Franklin Webber <franklin.webber@gmail.com>
This commit is contained in:
parent
23eff3df24
commit
6018a6959d
1 changed files with 15 additions and 16 deletions
|
@ -13,25 +13,24 @@ module Inspec::Resources
|
|||
method.'
|
||||
|
||||
example <<~EXAMPLE
|
||||
describe kernel_module('video') do
|
||||
it { should be_loaded }
|
||||
it { should_not be_disabled }
|
||||
it { should_not be_blacklisted }
|
||||
end
|
||||
|
||||
describe kernel_module('video') do
|
||||
it { should be_loaded }
|
||||
it { should_not be_disabled }
|
||||
it { should_not be_blacklisted }
|
||||
end
|
||||
describe kernel_module('sstfb') do
|
||||
it { should_not be_loaded }
|
||||
it { should be_disabled }
|
||||
end
|
||||
|
||||
describe kernel_module('sstfb') do
|
||||
it { should_not be_loaded }
|
||||
it { should be_disabled }
|
||||
end
|
||||
describe kernel_module('floppy') do
|
||||
it { should be_blacklisted }
|
||||
end
|
||||
|
||||
describe kernel_module('floppy') do
|
||||
it { should be_blacklisted }
|
||||
end
|
||||
|
||||
describe kernel_module('dhcp') do
|
||||
it { should_not be_loaded }
|
||||
end
|
||||
describe kernel_module('dhcp') do
|
||||
it { should_not be_loaded }
|
||||
end
|
||||
EXAMPLE
|
||||
|
||||
def initialize(modulename = nil)
|
||||
|
|
Loading…
Reference in a new issue