inspec/test/fixtures/profiles/export-json/simple-profile/controls/basic.rb

9 lines
387 B
Ruby

# 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 / directory' # A human-readable title
desc 'An optional description...'
describe file('/') do # The actual test
it { should be_directory }
end
end