debian_testing_spec.rb 591 B

123456789101112131415
  1. require 'spec_helper'
  2. describe 'apt::debian::testing', :type => :class do
  3. let(:facts) { { :lsbdistid => 'Debian', :osfamily => 'Debian' } }
  4. it {
  5. should contain_apt__source("debian_testing").with({
  6. "location" => "http://debian.mirror.iweb.ca/debian/",
  7. "release" => "testing",
  8. "repos" => "main contrib non-free",
  9. "required_packages" => "debian-keyring debian-archive-keyring",
  10. "key" => "46925553",
  11. "key_server" => "subkeys.pgp.net",
  12. "pin" => "-10"
  13. })
  14. }
  15. end