inspec/test/unit/mock/profiles/windows-only/controls/example.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

15 lines
275 B
Ruby

# copyright: 2015, The Authors
control 'dhcp-disabled' do
title 'DHCP is disabled'
describe windows_feature('dhcp') do
it { should be_installed }
end
end
control 'cdrive' do
title 'Has a C://'
describe file("C://") do
it { should be_directory }
end
end