# File lib/puppet/transaction.rb, line 183
183:     def deleting?(changes)
184:         changes.detect { |change|
185:             change.property.name == :ensure and change.should == :absent
186:         }
187:     end