
This class installs the keystone client package. Change-Id: Ia410f92dc4fd8eee4e912b9387e4538bb7607a09
17 lines
370 B
Ruby
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
|