blob: 8c26853b1d2642f3b4baf764c527e052ee53ff19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
require 'spec_helper'
describe 'barometer::db::sync' do
shared_examples_for 'barometer-dbsync' do
it 'runs barometer-db-sync' do
is_expected.to contain_exec('barometer-db-sync').with(
:command => 'barometer-manage db_sync ',
:path => [ '/bin', '/usr/bin', ],
:refreshonly => 'true',
:user => 'barometer',
:logoutput => 'on_failure'
)
end
end
on_supported_os({
:supported_os => OSDefaults.get_supported_os
}).each do |os,facts|
context "on #{os}" do
let (:facts) do
facts.merge(OSDefaults.get_facts({
:os_workers => 8,
:concat_basedir => '/var/lib/puppet/concat'
}))
end
it_configures 'barometer-dbsync'
end
end
end
|