aboutsummaryrefslogtreecommitdiff
path: root/spec/lib/puppet_spec/compiler.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/lib/puppet_spec/compiler.rb')
-rw-r--r--spec/lib/puppet_spec/compiler.rb9
1 files changed, 8 insertions, 1 deletions
diff --git a/spec/lib/puppet_spec/compiler.rb b/spec/lib/puppet_spec/compiler.rb
index 89c97a5..fb04a7b 100644
--- a/spec/lib/puppet_spec/compiler.rb
+++ b/spec/lib/puppet_spec/compiler.rb
@@ -29,12 +29,19 @@ module PuppetSpec::Compiler
end
def apply_compiled_manifest(manifest, prioritizer = Puppet::Graph::SequentialPrioritizer.new)
+ args = []
+ if Puppet.version.to_f < 5.0
+ args << 'apply'
+ # rubocop:disable RSpec/AnyInstance
+ Puppet::Transaction::Persistence.any_instance.stubs(:save)
+ # rubocop:enable RSpec/AnyInstance
+ end
catalog = compile_to_ral(manifest)
if block_given?
catalog.resources.each { |res| yield res }
end
transaction = Puppet::Transaction.new(catalog,
- Puppet::Transaction::Report.new,
+ Puppet::Transaction::Report.new(*args),
prioritizer)
transaction.evaluate
transaction.report.finalize_report