77b51ced865c5d2afd0beff16832a6b27aa56267
[mirror/dsa-puppet.git] / 3rdparty / modules / cinder / spec / classes / cinder_client_spec.rb
1 require 'spec_helper'
2
3 describe 'cinder::client' do
4   it { should contain_package('python-cinderclient').with_ensure('present') }
5   let :facts do
6     {:osfamily => 'Debian'}
7   end
8   context 'with params' do
9     let :params do
10       {:package_ensure => 'latest'}
11     end
12     it { should contain_package('python-cinderclient').with_ensure('latest') }
13   end
14 end