diff options
| author | Luke Kanies <luke@madstop.com> | 2008-04-01 00:08:15 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2008-04-01 00:08:15 -0500 |
| commit | 5e78151d1736e2c4cb741c2cbb7c6b5a59ed3e13 (patch) | |
| tree | 428a352bd3e8d4153e798ffdba390d02b5d63d68 /spec/unit/node | |
| parent | 88dc49cb7b0efe757c92ce28c807b91335acb07a (diff) | |
| download | puppet-5e78151d1736e2c4cb741c2cbb7c6b5a59ed3e13.tar.gz puppet-5e78151d1736e2c4cb741c2cbb7c6b5a59ed3e13.tar.xz puppet-5e78151d1736e2c4cb741c2cbb7c6b5a59ed3e13.zip | |
Fixing tests that were failing as a result of the merge,
including removing some now-obsolete code and tests from
the Settings class.
Diffstat (limited to 'spec/unit/node')
| -rwxr-xr-x | spec/unit/node/catalog.rb | 5 |
1 files changed, 1 insertions, 4 deletions
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 |
