]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/cinder/spec/classes/cinder_db_sync_spec.rb
try again, with puppetforge modules, correctly included now
[dsa-puppet.git] / 3rdparty / modules / cinder / spec / classes / cinder_db_sync_spec.rb
1 require 'spec_helper'
2
3 describe 'cinder::db::sync' do
4
5   let :facts do
6     {:osfamily => 'Debian'}
7   end
8   it { should contain_exec('cinder-manage db_sync').with(
9     :command     => 'cinder-manage db sync',
10     :path        => '/usr/bin',
11     :user        => 'cinder',
12     :refreshonly => true,
13     :logoutput   => 'on_failure'
14   ) }
15
16 end