
Switch to $::os_service_default all params in logging and db. Changes: logging.pp, db.pp and tests. Related-bug: #1515273 Change-Id: Idf7bc36d321328391a1b361add965c53627124a4
15 lines
397 B
Ruby
15 lines
397 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::client' do
|
|
it { is_expected.to contain_package('python-manilaclient').with_ensure('present') }
|
|
let :facts do
|
|
@default_facts.merge({:osfamily => 'Debian'})
|
|
end
|
|
context 'with params' do
|
|
let :params do
|
|
{:package_ensure => 'latest'}
|
|
end
|
|
it { is_expected.to contain_package('python-manilaclient').with_ensure('latest') }
|
|
end
|
|
end
|