2
0
Fork 0
mirror of https://github.com/inspec/inspec synced 2024-12-22 11:03:11 +00:00
inspec/examples/profile/controls/example.rb
Dominik Richter 84882e851b rename example controls
consistency with RFC readme
2015-12-28 13:06:38 +01:00

14 lines
480 B
Ruby

# 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