diff options
| author | Luke Kanies <luke@madstop.com> | 2007-10-22 22:33:06 -0500 |
|---|---|---|
| committer | Luke Kanies <luke@madstop.com> | 2007-10-22 22:33:06 -0500 |
| commit | 7fa99b08f9aa3777fba82f24eb5bb391f3758f48 (patch) | |
| tree | a9dc23c0cdf3ecbc4a177086a5c699ad4f3b00f2 /spec/integration | |
| parent | 688fcdf11a685dfda297beff50de8d4c751494d9 (diff) | |
Link handling is now in the file serving classes.
This was done by putting all of the functionality in the
Content and Metadata class (actually, in a new base class
for them).
There are still some issues, and there need to be integration
tests between the :local (soon to be renamed :file) termini for
these classes.
Diffstat (limited to 'spec/integration')
| -rwxr-xr-x | spec/integration/indirector/module_files.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/integration/indirector/module_files.rb b/spec/integration/indirector/module_files.rb index 67209fb39..3725a1286 100755 --- a/spec/integration/indirector/module_files.rb +++ b/spec/integration/indirector/module_files.rb @@ -19,7 +19,7 @@ describe Puppet::Indirector::ModuleFiles, " when interacting with Puppet::Module FileTest.expects(:exists?).with(filepath).returns(true) - @terminus.model.expects(:new).with(filepath) + @terminus.model.expects(:new).with(filepath, :links => nil) @terminus.find("puppetmounts://host/modules/mymod/myfile") end |
