Files
puppet-manila/spec/classes/cinder_client_spec.rb
2014-06-10 16:18:30 -04:00

15 lines
359 B
Ruby

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