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

10 lines
393 B
Ruby
Raw Normal View History

2016-08-19 07:40:54 +00:00
# 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
2016-08-19 07:40:54 +00:00
it { should be_directory }
end
end