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

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