906d4391ac89fd9122a4b4a500ade4a835cc785d
[mirror/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