Files
puppet-keystone/spec/classes/keystone_client_spec.rb
Mathieu Gagné 924de14f16 Add keystone::client
This class installs the keystone client package.

Change-Id: Ia410f92dc4fd8eee4e912b9387e4538bb7607a09
2013-06-05 13:06:05 -04:00

17 lines
370 B
Ruby

require 'spec_helper'
describe 'keystone::client' do
describe "with default parameters" do
it { should contain_package('python-keystoneclient').with_ensure('present') }
end
describe "with specified version" do
let :params do
{:ensure => '2013.1'}
end
it { should contain_package('python-keystoneclient').with_ensure('2013.1') }
end
end