mirror of
https://github.com/inspec/inspec
synced 2024-12-20 01:54:08 +00:00
a6582bea9b
* Remove any "All Rights Reserved" references InSpec is licensed and released under the Apache 2.0 license. This change removes all reference to legacy code files that still had any Copyright or License lines referring to "All Rights Reserved". Signed-off-by: Adam Leff <adam@leff.co> * fix functional tests Signed-off-by: Christoph Hartmann <chris@lollyrock.com>
16 lines
293 B
Ruby
16 lines
293 B
Ruby
# encoding: utf-8
|
|
# 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
|