blob: 17aba0df88bfac3845d05ae4a05ad17440525a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
#!/usr/bin/env ruby
require File.dirname(__FILE__) + '/../spec_helper'
require 'puppet/transaction'
describe Puppet::Transaction do
it "should not apply generated resources if the parent resource fails" do
catalog = Puppet::Resource::Catalog.new
resource = Puppet::Type.type(:file).new :path => "/foo/bar"
catalog.add_resource resource
child_resource = Puppet::Type.type(:file).new :path => "/foo/bar/baz"
resource.expects(:eval_generate).returns([child_resource])
transaction = Puppet::Transaction.new(catalog)
resource.expects(:evaluate).raises "this is a failure"
child_resource.expects(:evaluate).never
transaction.evaluate
end
end
|