From 5e78151d1736e2c4cb741c2cbb7c6b5a59ed3e13 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Tue, 1 Apr 2008 00:08:15 -0500 Subject: Fixing tests that were failing as a result of the merge, including removing some now-obsolete code and tests from the Settings class. --- spec/unit/node/catalog.rb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'spec/unit/node') diff --git a/spec/unit/node/catalog.rb b/spec/unit/node/catalog.rb index 434242103..d607b3540 100755 --- a/spec/unit/node/catalog.rb +++ b/spec/unit/node/catalog.rb @@ -514,10 +514,6 @@ describe Puppet::Node::Catalog, " when functioning as a resource container" do raise "Aliased non-isomorphic resource" end end - - after do - Puppet::Type.allclear - end end describe Puppet::Node::Catalog do @@ -647,6 +643,7 @@ describe Puppet::Node::Catalog, " when creating a relationship graph" do @file = Puppet::Type.type(:file) @one = @file.create :path => "/one" @two = @file.create :path => "/two" + @sub = @file.create :path => "/two/subdir" @catalog.add_edge @compone, @one @catalog.add_edge @comptwo, @two -- cgit