2012-01-23 22:08:00 +01:00
|
|
|
require 'spec_helper'
|
|
|
|
describe 'apt::debian::testing', :type => :class do
|
|
|
|
it {
|
2012-02-04 02:24:09 +01:00
|
|
|
should contain_apt__source("debian_testing").with({
|
|
|
|
"location" => "http://debian.mirror.iweb.ca/debian/",
|
|
|
|
"release" => "testing",
|
|
|
|
"repos" => "main contrib non-free",
|
|
|
|
"required_packages" => "debian-keyring debian-archive-keyring",
|
|
|
|
"key" => "55BE302B",
|
|
|
|
"key_server" => "subkeys.pgp.net",
|
|
|
|
"pin" => "-10"
|
|
|
|
})
|
2012-01-23 22:08:00 +01:00
|
|
|
}
|
|
|
|
end
|