inspec/test/unit/resources/cpan_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

24 lines
824 B
Ruby

# author: Christoph Hartmann
# author: Dominik Richter
# author: Markus Grobelin
require 'helper'
require 'inspec/resource'
describe 'Inspec::Resources::Cpan' do
it 'verify cpan package detail parsing' do
resource = load_resource('cpan', 'DBD::Pg')
pkg = {type: 'cpan', name: 'DBD::Pg', version: '3.7.0', installed: true}
_(resource.installed?).must_equal true
_(resource.info).must_equal pkg
end
it 'verify info for non-installed packages' do
resource = load_resource('cpan', 'DOES::Not::Exist')
pkg = {type: 'cpan', name: 'DOES::Not::Exist', installed: false}
_(resource.installed?).must_equal false
_(resource.version).must_be_nil
_(resource.info[:name]).must_equal 'DOES::Not::Exist'
_(resource.info[:type]).must_equal 'cpan'
_(resource.info).must_equal pkg
end
end