puppet-mistral/spec/classes/mistral_cron_trigger_spec.rb
Dougal Matthews f0c834bf9a Add execution_interval to the Mistral manifest
Related-Bug: #1747386
Depends-On: I9060253bc416be28af4ef81f3edf694059d92066
Change-Id: I6445ff1b6691a098f15e8402ae9d971e751f5552
2018-02-07 11:29:19 +00:00

38 lines
1.0 KiB
Ruby

require 'spec_helper'
describe 'mistral::cron_trigger' do
shared_examples_for 'mistral cron trigger' do
it 'configure cron trigger default params' do
is_expected.to contain_mistral_config('cron_trigger/enabled').with_value('<SERVICE DEFAULT>')
is_expected.to contain_mistral_config('cron_trigger/execution_interval').with_value('<SERVICE DEFAULT>')
end
context 'with specific parameters' do
let :params do
{ :enabled => true,
:execution_interval => 60,
}
end
it 'configure cron trigger params' do
is_expected.to contain_mistral_config('cron_trigger/enabled').with_value(true)
is_expected.to contain_mistral_config('cron_trigger/execution_interval').with_value(60)
end
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_configures 'mistral cron trigger'
end
end
end