puppet-manila/spec/classes/manila_db_sync_spec.rb
2014-06-13 13:32:14 -04:00

17 lines
340 B
Ruby

require 'spec_helper'
describe 'cinder::db::sync' do
let :facts do
{:osfamily => 'Debian'}
end
it { should contain_exec('cinder-manage db_sync').with(
:command => 'cinder-manage db sync',
:path => '/usr/bin',
:user => 'cinder',
:refreshonly => true,
:logoutput => 'on_failure'
) }
end