Add strict_variables support in unit tests

This commit is contained in:
Mickaël Canévet 2014-04-08 16:38:31 +02:00
parent e26036c176
commit 47bc3423f6
2 changed files with 5 additions and 0 deletions

View file

@ -11,6 +11,7 @@ env:
- PUPPET_GEM_VERSION="~> 2.7.0"
- PUPPET_GEM_VERSION="~> 3.2.0"
- PUPPET_GEM_VERSION="~> 3.4.0"
- PUPPET_GEM_VERSION="~> 3.5.0.rc3" STRICT_VARIABLES="yes"
matrix:
fast_finish: true
exclude:

View file

@ -16,6 +16,10 @@ RSpec.configure do |c|
# Store any environment variables away to be restored later
@old_env = {}
ENV.each_key {|k| @old_env[k] = ENV[k]}
if ENV['STRICT_VARIABLES'] == 'yes'
Puppet.settings[:strict_variables]=true
end
end
c.after :each do