mirror of
https://github.com/inspec/inspec
synced 2024-12-23 19:43:14 +00:00
4f642e0942
Signed-off-by: Miah Johnson <miah@chia-pet.org>
10 lines
347 B
Ruby
10 lines
347 B
Ruby
title 'Minimal control'
|
|
|
|
# you add controls here
|
|
control 'minimalist' do # A unique ID for this control
|
|
impact 0.7 # The criticality, if this control fails.
|
|
|
|
describe file('/') do # The actual test
|
|
it { should be_directory }
|
|
end
|
|
end
|