2012-04-17 10:23:31 -07:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'keystone::python' do
|
|
|
|
|
|
|
|
let :facts do
|
|
|
|
{ :osfamily => 'Debian' }
|
|
|
|
end
|
|
|
|
|
2012-05-03 13:51:12 -05:00
|
|
|
it { should contain_package('python-keystone').with_ensure("present") }
|
|
|
|
|
|
|
|
describe 'override ensure' do
|
2013-05-09 23:17:08 -04:00
|
|
|
let(:params) { { :ensure => "latest" } }
|
2012-05-03 13:51:12 -05:00
|
|
|
|
2013-05-09 23:17:08 -04:00
|
|
|
it { should contain_package('python-keystone').with_ensure("latest") }
|
2012-05-03 13:51:12 -05:00
|
|
|
end
|
2012-04-17 10:23:31 -07:00
|
|
|
|
|
|
|
end
|