mirror of
https://github.com/inspec/inspec
synced 2024-12-26 04:53:24 +00:00
12 lines
199 B
Ruby
12 lines
199 B
Ruby
|
control "deep-skip-inner-01" do
|
||
|
describe file("/") do
|
||
|
it { should be_directory }
|
||
|
end
|
||
|
end
|
||
|
|
||
|
control "deep-skip-inner-skipme" do
|
||
|
describe file("/") do
|
||
|
it { should be_directory }
|
||
|
end
|
||
|
end
|