mirror of
https://github.com/inspec/inspec
synced 2024-12-18 09:03:12 +00:00
20 lines
588 B
Ruby
20 lines
588 B
Ruby
# encoding: utf-8
|
|
# copyright: 2015, The Authors
|
|
# license: All rights reserved
|
|
|
|
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
|