summaryrefslogtreecommitdiff
path: root/spec/spec_helper.rb
diff options
context:
space:
mode:
authorDavid Schmitt <david.schmitt@puppetlabs.com>2015-04-15 16:46:09 -0700
committerDavid Schmitt <david.schmitt@puppetlabs.com>2015-05-05 13:27:46 +0100
commit29f09e2181a56ec801b39e56bd28119709495dd9 (patch)
treee6f78b98f1486c57ddd889febd72dd2d18b29d40 /spec/spec_helper.rb
parentc0cf14e77405ba3a0b7ae471d1ee1c249c7d4da8 (diff)
spec_helper: set parser config if requested
Diffstat (limited to 'spec/spec_helper.rb')
-rwxr-xr-xspec/spec_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index b490ca3..13014ab 100755
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -30,5 +30,7 @@ RSpec.configure do |config|
Facter::Util::Loader.any_instance.stubs(:load_all)
Facter.clear
Facter.clear_messages
+
+ Puppet[:parser] = 'future' if ENV['FUTURE_PARSER'] == 'yes'
end
end