mirror of
https://github.com/inspec/inspec
synced 2024-12-20 01:54:08 +00:00
e8ae9012ea
Signed-off-by: Miah Johnson <miah@chia-pet.org>
14 lines
311 B
Ruby
14 lines
311 B
Ruby
if ENV['DOCKER']
|
|
$stderr.puts "\033[1;33mTODO: Not running #{__FILE__.split("/").last} because we are running in docker\033[0m"
|
|
return
|
|
end
|
|
|
|
if os.windows?
|
|
describe filesystem('c:') do
|
|
its('size') { should be >= 1 }
|
|
end
|
|
else
|
|
describe filesystem('/') do
|
|
its('size') { should be >= 1 }
|
|
end
|
|
end
|