Add missing tag on python-mistralclient package.

Change-Id: I271f23fa40d40ebd11c36ddb4cb8ec68d6942aae
This commit is contained in:
Sofer Athlan-Guyot 2016-07-25 15:26:26 +02:00
parent 2d7524428b
commit c36ae89ed4
2 changed files with 14 additions and 0 deletions

View File

@ -16,5 +16,6 @@ class mistral::client(
package { 'python-mistralclient':
ensure => $package_ensure,
name => $::mistral::params::client_package,
tag => ['openstack', 'mistral-package'],
}
}

View File

@ -0,0 +1,13 @@
require 'spec_helper'
describe 'mistral::client' do
on_supported_os.each do |os, facts|
let(:facts) { facts }
context "on #{os}" do
it { is_expected.to contain_package('python-mistralclient')
.with(:ensure => 'present',
:tag => ['openstack',
'mistral-package']) }
end
end
end