and an acceptance test
[puppet-modules/puppetlabs-apt.git] / spec / acceptance / apt_spec.rb
index 3c97421ab0c1eded83c1f161544924d0cb552ed3..e409a9098f4d8b93b1c9284cf905fc3434fc8307 100644 (file)
@@ -13,7 +13,6 @@ describe 'apt class' do
       pp = <<-EOS
       class { 'apt':
         always_apt_update    => true,
-        disable_keys         => true,
         purge_sources_list   => true,
         purge_sources_list_d => true,
         purge_preferences    => true,
@@ -29,7 +28,6 @@ describe 'apt class' do
             'key_server' => 'pgp.mit.edu',
           }
         },
-        fancy_progress       => true,
       }
       EOS
 
@@ -38,7 +36,7 @@ describe 'apt class' do
     end
     it 'should still work' do
       shell('apt-get update')
-      shell('apt-get -y upgrade')
+      shell('apt-get -y --force-yes upgrade')
     end
   end