mirror of
https://github.com/inspec/inspec
synced 2024-12-20 18:13:20 +00:00
23 lines
468 B
Ruby
23 lines
468 B
Ruby
|
control "control-start-02" do
|
||
|
desc "This control should get skipped"
|
||
|
describe "a string" do
|
||
|
it { should cmp "a string" }
|
||
|
end
|
||
|
end
|
||
|
|
||
|
only_if("I wonder what this will do") { false }
|
||
|
|
||
|
control "control-start-03" do
|
||
|
desc "This control should get skipped"
|
||
|
describe "a string" do
|
||
|
it { should cmp "a string" }
|
||
|
end
|
||
|
end
|
||
|
|
||
|
control "control-start-04" do
|
||
|
desc "This control should get skipped"
|
||
|
describe "a string" do
|
||
|
it { should cmp "a string" }
|
||
|
end
|
||
|
end
|