mirror of
https://github.com/inspec/inspec
synced 2024-12-19 01:23:50 +00:00
11 lines
305 B
Ruby
11 lines
305 B
Ruby
control 'tmp-1.0' do
|
|
impact 0.7
|
|
title 'Create / 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
|