inspec/examples/profile/controls/example.rb

15 lines
480 B
Ruby
Raw Normal View History

2015-12-14 13:23:41 +00:00
# encoding: utf-8
# copyright: 2015, Chef Software, Inc.
# license: All rights reserved
title '/tmp profile'
control "tmp-1.0" do # A unique ID for this control
impact 0.0 # The criticality, if this control fails.
title "Create /tmp directory" # A human-readable title
desc "An optional description..."
describe file('/tmp') do # The actual test
it { should be_directory }
end
end