Force owner and mode on ppa files
[puppet-modules/puppetlabs-apt.git] / spec / classes / debian_unstable_spec.rb
1 require 'spec_helper'
2 describe 'apt::debian::unstable', :type => :class do
3   it {
4     should contain_apt__source("debian_unstable").with({
5       "location"          => "http://debian.mirror.iweb.ca/debian/",
6       "release"           => "unstable",
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