You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packer/provisioner/inspec/test-fixtures/skip_control.rb

14 lines
253 B

# copyright: 2018, The Authors
title "skip control"
control "skip-1.0" do
impact 1.0
title "skip control"
desc "skip control to generate a 101 return code"
only_if { 1 == 2 }
describe file("/tmp") do
it { should be_directory }
end
end