inspec/test/fixtures/profiles/slash-in-name/not-allowed/controls/filesystem_spec.rb
Ryan Davis db8e6e7415 Moved test/unit/mock/* to test/fixtures
Signed-off-by: Ryan Davis <zenspider@chef.io>
2019-11-08 16:29:03 -08:00

14 lines
249 B
Ruby

# copyright: 2015, Chef Software, Inc
title 'Proc Filesystem Configuration'
control 'test01' do
impact 0.5
title 'Catchy title'
desc '
There should always be a /proc
'
describe file('/proc') do
it { should be_mounted }
end
end