mirror of
https://github.com/inspec/inspec
synced 2024-12-25 12:33:25 +00:00
05ac2724ec
* Remove a broken link. Signed-off-by: Nathen Harvey <nharvey@chef.io> * It is now 2017 While the content in this file was actually written in 2015, this example is meant to be overwritten and is generated by the user in the current year. Signed-off-by: Nathen Harvey <nharvey@chef.io>
19 lines
557 B
Ruby
19 lines
557 B
Ruby
# encoding: utf-8
|
|
# copyright: 2017, The Authors
|
|
|
|
title 'sample section'
|
|
|
|
# you can also use plain tests
|
|
describe file('/tmp') do
|
|
it { should be_directory }
|
|
end
|
|
|
|
# you add controls here
|
|
control 'tmp-1.0' do # A unique ID for this control
|
|
impact 0.7 # The criticality, if this control fails.
|
|
title 'Create /tmp directory' # A human-readable title
|
|
desc 'An optional description...'
|
|
describe file('/tmp') do # The actual test
|
|
it { should be_directory }
|
|
end
|
|
end
|