Update facts (lsbdistid and osfamily) (refs: #300)

According commit
4d188443bc

Lsbdistid is now required by apt module.

Closes: #300
This commit is contained in:
Sebastien Badia 2014-02-25 12:43:07 +01:00
parent ff99b29f88
commit a24e4d82f3

View File

@ -52,7 +52,10 @@ describe 'cloud::database::nosql' do
context 'on Debian platforms' do
let :facts do
{ :osfamily => 'Debian' }
{
:osfamily => 'Debian',
:lsbdistid => 'Debian'
}
end
it { should contain_class('mongodb::globals').with( :manage_package_repo => true) }