inspec/test/fixtures/profiles/old-examples/profile/controls/minimal.rb
Miah Johnson 4f642e0942 Clean up schema PR.
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2020-02-05 17:06:55 -08:00

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