inspec/test/unit/mock/profiles/windows-only/controls/example.rb

18 lines
324 B
Ruby
Raw Normal View History

# encoding: utf-8
# copyright: 2015, The Authors
# license: All rights reserved
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