mirror of
https://github.com/inspec/inspec
synced 2024-11-24 05:33:17 +00:00
49d36de0f3
* Allow `inspec check` to ignore `only_if` When using `inspec check` a mock Train backend is created. This means that the following would raise an error because `os.name` is `nil` ``` only_if { os.name.include?('anything') } ``` Since `inspec check` isn't concerned with the evaluation of `only_if` this skips those checks if the block given raises an error. Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com> * Remove unnecessary `e` in rescue Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com> * Modify implementation to use `check_mode` Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com> * Move `check_mode` concept to the Profile scope Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com> * Fix lint after rubocop upgrade Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com> * Add comment for mocked ControlEvalContext options Signed-off-by: Jerry Aldrich <jerryaldrichiii@gmail.com>
13 lines
310 B
Ruby
13 lines
310 B
Ruby
title 'only-if-os-nope'
|
|
|
|
only_if { os.name.include('nope') }
|
|
|
|
control 'only-if-os-nope-1.0' do
|
|
impact 1.0
|
|
title 'Test `only_if` in a control raising an error'
|
|
desc 'Not a real test, check with `inspec check`'
|
|
only_if { os.name.include('nope') }
|
|
describe 'foo' do
|
|
it { should eq 'foo' }
|
|
end
|
|
end
|