inspec/test/unit/resources/chocolatey_package_test.rb
Miah Johnson 659b4b373a Remove # encoding: utf8 magic comments
Signed-off-by: Miah Johnson <miah@chia-pet.org>
2019-05-07 16:06:23 -07:00

26 lines
920 B
Ruby

# author: David Alexander <opensource@thelonelyghost.com>
require 'helper'
require 'inspec/resource'
def skip(*args)
# noop
end
describe 'Inspec::Resources::ChocoPkg' do
it 'can parse output from `choco` when package is installed' do
pkg = { name: 'git', installed: false, version: nil, type: 'chocolatey' }
resource = MockLoader.new(:windows).load_resource('chocolatey_package', 'git')
_(resource.installed?).must_equal pkg[:installed]
_(resource.version).must_be_nil
_(resource.info).must_equal pkg
end
it 'can parse output from `choco` when package not installed' do
pkg = { name: 'nssm', installed: true, version: '2.24.101', type: 'chocolatey' }
resource = MockLoader.new(:windows).load_resource('chocolatey_package', 'nssm')
_(resource.installed?).must_equal pkg[:installed]
_(resource.version).must_equal pkg[:version]
_(resource.info).must_equal pkg
end
end