X-Git-Url: https://review.fuel-infra.org/gitweb?a=blobdiff_plain;f=spec%2Facceptance%2Fapt_spec.rb;h=550574867b5deef5053118d77ed05ed60e5b6f50;hb=1db434a418d8375321a08a12964d42cec91c8bfa;hp=04f554072bd2a9a2c127c20df51ee5f64db00ab9;hpb=438a48a21f416c4a5202160e7d2d4775c6e6739b;p=puppet-modules%2Fpuppetlabs-apt.git diff --git a/spec/acceptance/apt_spec.rb b/spec/acceptance/apt_spec.rb index 04f5540..5505748 100644 --- a/spec/acceptance/apt_spec.rb +++ b/spec/acceptance/apt_spec.rb @@ -4,7 +4,7 @@ MAX_TIMEOUT_RETRY = 3 TIMEOUT_RETRY_WAIT = 5 TIMEOUT_ERROR_MATCHER = %r{no valid OpenPGP data found} -everything_everything_pp = <<-EOS +everything_everything_pp = <<-MANIFEST if $::lsbdistcodename == 'lucid' { $sources = undef } else { @@ -34,16 +34,16 @@ everything_everything_pp = <<-EOS }, sources => $sources, } - EOS + MANIFEST describe 'apt class' do - context 'reset' do + context 'with reset' do it 'fixes the sources.list' do shell('cp /etc/apt/sources.list /tmp') end end - context 'all the things' do + context 'with all the things' do it 'works with no errors' do # Apply the manifest (Retry if timeout error is received from key pool) retry_on_error_matching(MAX_TIMEOUT_RETRY, TIMEOUT_RETRY_WAIT, TIMEOUT_ERROR_MATCHER) do @@ -58,7 +58,7 @@ describe 'apt class' do end end - context 'reset' do + context 'with reset' do it 'fixes the sources.list' do shell('cp /tmp/sources.list /etc/apt') end