mirror of
https://github.com/inspec/inspec
synced 2024-11-14 17:07:09 +00:00
bfd569fe99
* Use fail_resource rather than skip_resource when the platform is not supported by the resource. * Update tests to handle failing on unsupported platforms. Update functional tests. Signed-off-by: Miah Johnson <miah@chia-pet.org>
18 lines
514 B
Ruby
18 lines
514 B
Ruby
# encoding: utf-8
|
|
|
|
require 'helper'
|
|
require 'inspec/resource'
|
|
|
|
describe 'Inspec::Resources::Virtualization' do
|
|
let(:resource) { MockLoader.new(:ubuntu).load_resource('virtualization') }
|
|
|
|
it 'fails the resource if OS is not Linux' do
|
|
resource = MockLoader.new(:windows).load_resource('virtualization')
|
|
resource.resource_failed?.must_equal true
|
|
end
|
|
|
|
it 'returns nil for all properties if no virutalization platform is found' do
|
|
resource.system.must_be_nil
|
|
resource.role.must_be_nil
|
|
end
|
|
end
|