puppet-glance/spec/classes/glance_backend_file_spec.rb

24 lines
637 B
Ruby
Raw Normal View History

require 'spec_helper'
describe 'glance::backend::file' do
let :facts do
{
:osfamily => 'Debian'
}
end
let :pre_condition do
'class { "glance::api": keystone_password => "pass" }'
end
2012-10-14 00:23:20 -07:00
it { should contain_glance_api_config('DEFAULT/default_store').with_value('file') }
it { should contain_glance_api_config('DEFAULT/filesystem_store_datadir').with_value('/var/lib/glance/images/') }
describe 'when overriding datadir' do
let :params do
{:filesystem_store_datadir => '/tmp/'}
end
2012-10-14 00:23:20 -07:00
it { should contain_glance_api_config('DEFAULT/filesystem_store_datadir').with_value('/tmp/') }
end
end