diff options
author | Luke Kanies <luke@madstop.com> | 2009-01-22 16:05:43 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2009-02-06 18:08:40 -0600 |
commit | 54faf7825bbffc5a4ca252389305dd23ae8d2d84 (patch) | |
tree | c9d059cb83b3f0de52ddc52c33278eb53dd2edd7 /spec/unit/agent/downloader.rb | |
parent | 9d76b70c07c86f0041a0e6a1537227de1b619017 (diff) | |
download | puppet-54faf7825bbffc5a4ca252389305dd23ae8d2d84.tar.gz |
Moving fact and plugin handling into modules
This doesn't change functionality, it just simplifies
the agent class.
I've also started the work to get the catalog handling
done using REST/the Indirector.
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec/unit/agent/downloader.rb')
-rwxr-xr-x | spec/unit/agent/downloader.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/agent/downloader.rb b/spec/unit/agent/downloader.rb index 6b07e5bb4..28c5d030f 100755 --- a/spec/unit/agent/downloader.rb +++ b/spec/unit/agent/downloader.rb @@ -99,7 +99,7 @@ describe Puppet::Agent::Downloader do @dler.expects(:file).returns file - Puppet::Node::Catalog.expects(:new).returns catalog + Puppet::Resource::Catalog.expects(:new).returns catalog catalog.expects(:add_resource).with(file) @dler.catalog.should equal(catalog) |