puppet-cinder/spec/classes/cinder_client_spec.rb
2012-11-02 10:12:35 -07:00

12 lines
309 B
Ruby

require 'spec_helper'
describe 'cinder::client' do
it { should contain_package('python-cinderclient').with_ensure('present') }
context 'with params' do
let :params do
{:package_ensure => 'latest'}
end
it { should contain_package('python-cinderclient').with_ensure('latest') }
end
end