mirror of
https://github.com/inspec/inspec
synced 2024-12-20 18:13:20 +00:00
9 lines
393 B
Ruby
9 lines
393 B
Ruby
# you add controls here
|
|
control 'profilec-1' 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('/') do # The actual test
|
|
it { should be_directory }
|
|
end
|
|
end
|