puppet-mistral/spec/classes/mistral_client_spec.rb
Sofer Athlan-Guyot c36ae89ed4 Add missing tag on python-mistralclient package.
Change-Id: I271f23fa40d40ebd11c36ddb4cb8ec68d6942aae
2016-07-25 15:48:30 +02:00

14 lines
407 B
Ruby

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