require 'spec_helper' describe 'heat::policy' do shared_examples_for 'heat policies' do let :params do { :policy_path => '/etc/heat/policy.json', :policies => { 'context_is_admin' => { 'key' => 'context_is_admin', 'value' => 'foo:bar' } } } end it 'set up the policies' do is_expected.to contain_openstacklib__policy__base('context_is_admin').with({ :key => 'context_is_admin', :value => 'foo:bar' }) is_expected.to contain_heat_config('oslo_policy/policy_file').with_value('/etc/heat/policy.json') end end context 'on Debian platforms' do let :facts do @default_facts.merge({ :osfamily => 'Debian', }) end it_configures 'heat policies' end context 'on RedHat platforms' do let :facts do @default_facts.merge({ :osfamily => 'RedHat', }) end it_configures 'heat policies' end end