mirror of
https://github.com/inspec/inspec
synced 2024-12-20 18:13:20 +00:00
692d6a9ab8
Signed-off-by: Ryan Davis <zenspider@chef.io>
12 lines
246 B
Ruby
12 lines
246 B
Ruby
# copyright: 2015, Chef Software, Inc
|
|
|
|
title 'Host example.com lookup'
|
|
|
|
control 'test01' do
|
|
impact 0.5
|
|
title 'Catchy title'
|
|
desc 'example.com should always exist.'
|
|
describe host('example.com') do
|
|
it { should be_resolvable }
|
|
end
|
|
end
|