mirror of
https://github.com/inspec/inspec
synced 2024-12-17 16:43:14 +00:00
13 lines
344 B
Ruby
13 lines
344 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?
|
||
|
STDERR.puts "\033[1;33mTODO: Not running #{__FILE__.split("/").last} because we are not on Linux.\033[0m"
|
||
|
return
|
||
|
end
|
||
|
|
||
|
describe filesystem('/') do
|
||
|
its('size') { should be >= 1 }
|
||
|
end
|