inspec/test/fixtures/profiles/complete-profile/controls/host_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

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