mirror of
https://github.com/inspec/inspec
synced 2024-12-20 10:03:28 +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>
19 lines
557 B
Ruby
19 lines
557 B
Ruby
# encoding: utf-8
|
|
# copyright: 2015, The Authors
|
|
|
|
title 'sample section'
|
|
|
|
# you can also use plain tests
|
|
describe file('/tmp') do
|
|
it { should be_directory }
|
|
end
|
|
|
|
# you add controls here
|
|
control 'tmp-1.0' do # A unique ID for this control
|
|
impact 0.7 # The criticality, if this control fails.
|
|
title 'Create /tmp directory' # A human-readable title
|
|
desc 'An optional description...'
|
|
describe file('/tmp') do # The actual test
|
|
it { should be_directory }
|
|
end
|
|
end
|