inspec/test/unit/resource_gem_test.rb
Christoph Hartmann 8fff2ee989 add author header
2015-10-06 18:55:44 +02:00

21 lines
455 B
Ruby

# encoding: utf-8
# author: Christoph Hartmann
# author: Dominik Richter
require 'helper'
require 'vulcano/resource'
describe 'Vulcano::Resources::Passwd' do
let(:resource) { load_resource('gem', 'rubocop') }
it 'verify gem package detail parsing' do
pkg = {
name: 'rubocop',
version: '0.33.0',
type: 'gem',
installed: true,
}
_(resource.installed?).must_equal true
_(resource.info).must_equal pkg
end
end