Fix unit tests incompatible with puppetlab-stdlib 8.0.0

Since puppetlabs-stdlib 8.0.0, ensure_packages automatically translates
'ensure => present'  to 'ensure => installed' and that translation
breaks existing assertions in unit tests.

Change-Id: Ieaab9b14771d79713e83aad168ec9a2334e26226
This commit is contained in:
Takashi Kajinami 2021-10-01 16:04:41 +09:00
parent 9d03150ff3
commit 5f57e5521a
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ require 'spec_helper'
describe 'swift::xfs' do
shared_examples 'swift::xfs' do
['xfsprogs', 'parted'].each do |present_package|
it { is_expected.to contain_package(present_package).with_ensure('present') }
it { is_expected.to contain_package(present_package).with_ensure('installed') }
end
end