inspec/examples/profile/controls/example.rb

24 lines
820 B
Ruby
Raw Normal View History

2015-12-14 13:23:41 +00:00
# encoding: utf-8
# copyright: 2015, Chef Software, Inc.
title '/tmp profile'
# you add controls here
2015-12-14 13:23:41 +00:00
control "tmp-1.0" do # A unique ID for this control
impact 0.7 # The criticality, if this control fails.
2015-12-14 13:23:41 +00:00
title "Create /tmp directory" # A human-readable title
2016-03-17 22:07:42 +00:00
desc "An optional description..." # Describe why this is needed
tag data: "temp data" # A tag allows you to associate key information
tag "security" # to the test
2016-03-17 22:07:42 +00:00
ref "Document A-12", url: 'http://...' # Additional references
2015-12-14 13:23:41 +00:00
describe file('/tmp') do # The actual test
it { should be_directory }
end
end
# you can also use plain tests
describe file('/tmp') do
it { should be_directory }
end