mirror of
https://github.com/inspec/inspec
synced 2025-02-17 06:28:40 +00:00
30 lines
940 B
Ruby
30 lines
940 B
Ruby
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::FileSystemResource' do
|
|
# arch linux
|
|
it 'verify filesystem on linux' do
|
|
resource = MockLoader.new(:ubuntu1404).load_resource('filesystem','/')
|
|
_(resource.size).must_be :>=, 1
|
|
_(resource.name).must_equal '/'
|
|
_(resource.type).must_equal 'ext4'
|
|
_(resource.free).must_be :>=, 1
|
|
end
|
|
|
|
# arch windows
|
|
it 'verify filesystem on windows' do
|
|
resource = MockLoader.new(:windows).load_resource('filesystem','c:')
|
|
_(resource.size).must_be :>=, 1
|
|
_(resource.name).must_equal 'c:'
|
|
_(resource.type).must_equal 'NTFS'
|
|
_(resource.free).must_be :>=, 1
|
|
end
|
|
|
|
# unsuported os
|
|
describe 'when loading filesystem in unsupported OS family' do
|
|
it 'fails on FreeBSD (unix-like)' do
|
|
resource_fail = MockLoader.new(:freebsd10).load_resource('filesystem', '/')
|
|
resource_fail.check_supports.must_equal false
|
|
end
|
|
end
|
|
end
|