mirror of
https://github.com/inspec/inspec
synced 2025-01-02 00:09:01 +00:00
f39cf8c904
Signed-off-by: Clinton Wolfe <clintoncwolfe@gmail.com>
22 lines
468 B
Ruby
22 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
|