inspec/test/unit/mock/profiles/complete-profile/controls/host_spec.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

14 lines
254 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