Add missing tag on python-mistralclient package.
Change-Id: I271f23fa40d40ebd11c36ddb4cb8ec68d6942aae
This commit is contained in:
parent
2d7524428b
commit
c36ae89ed4
@ -16,5 +16,6 @@ class mistral::client(
|
||||
package { 'python-mistralclient':
|
||||
ensure => $package_ensure,
|
||||
name => $::mistral::params::client_package,
|
||||
tag => ['openstack', 'mistral-package'],
|
||||
}
|
||||
}
|
||||
|
13
spec/classes/mistral_client_spec.rb
Normal file
13
spec/classes/mistral_client_spec.rb
Normal 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
|
Loading…
x
Reference in New Issue
Block a user