inspec/test/fixtures/profiles/dependencies/profile_c/controls/example.rb

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