File: mistral_deps_spec.rb

package info (click to toggle)
puppet-module-mistral 25.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,064 kB
  • sloc: ruby: 2,240; python: 38; makefile: 11; sh: 10
file content (30 lines) | stat: -rw-r--r-- 889 bytes parent folder | download | duplicates (3)
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
require 'spec_helper'

describe 'mistral::deps' do
  shared_examples 'mistral::deps' do
    it {
      should contain_anchor('mistral::install::begin')
      should contain_anchor('mistral::install::end')
      should contain_anchor('mistral::config::begin')
      should contain_anchor('mistral::config::end')
      should contain_anchor('mistral::db::begin')
      should contain_anchor('mistral::db::end')
      should contain_anchor('mistral::dbsync::begin')
      should contain_anchor('mistral::dbsync::end')
      should contain_anchor('mistral::service::begin')
      should contain_anchor('mistral::service::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())
      end

      it_behaves_like 'mistral::deps'
    end
  end
end