mirror of
https://github.com/inspec/inspec
synced 2025-01-03 08:49:03 +00:00
14 lines
327 B
Ruby
14 lines
327 B
Ruby
|
# encoding: utf-8
|
||
|
|
||
|
control 'tmp-1.0' do
|
||
|
impact 0.7
|
||
|
title 'Create /tmp directory'
|
||
|
description 'Default description'
|
||
|
description rational: 'Rational for the metadata test control'
|
||
|
description 'something else': 'Even more metadata for the test control'
|
||
|
|
||
|
describe 'a thing' do
|
||
|
it { should cmp 'a thing' }
|
||
|
end
|
||
|
end
|