module-puppetlabs-apt/spec/classes/params_spec.rb

40 lines
1.1 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe 'apt::params', :type => :class do
let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } }
let (:title) { 'my_package' }
it { is_expected.to contain_apt__params }
# There are 4 resources in this class currently
# there should not be any more resources because it is a params class
# The resources are class[apt::params], class[main], class[settings], stage[main]
it "Should not contain any resources" do
expect(subject.resources.size).to eq(4)
end
2014-02-27 10:23:11 +01:00
describe "With unknown lsbdistid" do
2015-02-15 18:39:17 +01:00
let(:facts) { { :lsbdistid => 'CentOS', :osfamily => 'Debian' } }
2014-02-27 10:23:11 +01:00
let (:title) { 'my_package' }
it do
expect {
is_expected.to compile
2014-02-27 10:23:11 +01:00
}.to raise_error(Puppet::Error, /Unsupported lsbdistid/)
end
end
describe "With lsb-release not installed" do
2015-02-15 18:39:17 +01:00
let(:facts) { { :lsbdistid => '', :osfamily => 'Debian' } }
let (:title) { 'my_package' }
it do
expect {
is_expected.to compile
}.to raise_error(Puppet::Error, /Unable to determine lsbdistid, is lsb-release installed/)
end
end
end