Force owner and mode on ppa files
[puppet-modules/puppetlabs-apt.git] / spec / classes / debian_testing_spec.rb
1 require 'spec_helper'
2 describe 'apt::debian::testing', :type => :class do
3   it {
4     should contain_apt__source("debian_testing").with({
5       "location"            => "http://debian.mirror.iweb.ca/debian/",
6       "release"             => "testing",
7       "repos"               => "main contrib non-free",
8       "required_packages"   => "debian-keyring debian-archive-keyring",
9       "key"                 => "55BE302B",
10       "key_server"          => "subkeys.pgp.net",
11       "pin"                 => "-10"
12     })
13   }
14 end