2012-01-23 22:08:00 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
describe 'apt::debian::unstable', :type => :class do
|
2014-03-07 16:03:44 +01:00
|
|
|
let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } }
|
2012-01-23 22:08:00 +01:00
|
|
|
it {
|
2012-02-04 02:24:09 +01:00
|
|
|
should contain_apt__source("debian_unstable").with({
|
|
|
|
"location" => "http://debian.mirror.iweb.ca/debian/",
|
|
|
|
"release" => "unstable",
|
|
|
|
"repos" => "main contrib non-free",
|
|
|
|
"required_packages" => "debian-keyring debian-archive-keyring",
|
2014-02-18 22:57:01 +01:00
|
|
|
"key" => "46925553",
|
2012-02-04 02:24:09 +01:00
|
|
|
"key_server" => "subkeys.pgp.net",
|
|
|
|
"pin" => "-10"
|
|
|
|
})
|
2012-01-23 22:08:00 +01:00
|
|
|
}
|
|
|
|
end
|