summaryrefslogtreecommitdiffstats
path: root/spec/unit/file_serving
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2007-10-22 22:37:52 -0500
committerLuke Kanies <luke@madstop.com>2007-10-22 22:37:52 -0500
commitde5d91e2036de2934a4eec79d35a714f3ed24b10 (patch)
tree1f6c074f749b9eb513baefaac7ac7cc952b381cb /spec/unit/file_serving
parent7fa99b08f9aa3777fba82f24eb5bb391f3758f48 (diff)
Renaming the :local termini for metadata and content
to :file.
Diffstat (limited to 'spec/unit/file_serving')
-rwxr-xr-xspec/unit/file_serving/terminus_selector.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/spec/unit/file_serving/terminus_selector.rb b/spec/unit/file_serving/terminus_selector.rb
index 046f71bdc..9c2c01bfd 100755
--- a/spec/unit/file_serving/terminus_selector.rb
+++ b/spec/unit/file_serving/terminus_selector.rb
@@ -65,17 +65,17 @@ describe Puppet::FileServing::TerminusSelector, " when being used to select term
@object.select_terminus("puppet:///module/file").should == :rest
end
- it "should choose :local when the protocol is 'file'" do
- @object.select_terminus("file://host/module/file").should == :local
+ it "should choose :file when the protocol is 'file'" do
+ @object.select_terminus("file://host/module/file").should == :file
end
- it "should choose :local when the URI is a normal path name" do
- @object.select_terminus("/module/file").should == :local
+ it "should choose :file when the URI is a normal path name" do
+ @object.select_terminus("/module/file").should == :file
end
- # This is so that we only choose modules over mounts, not local
- it "should choose :local when the protocol is 'file' and the fully qualified path starts with '/modules'" do
- @object.select_terminus("file://host/modules/file").should == :local
+ # This is so that we only choose modules over mounts, not file
+ it "should choose :file when the protocol is 'file' and the fully qualified path starts with '/modules'" do
+ @object.select_terminus("file://host/modules/file").should == :file
end
it "should fail when a protocol other than :puppet, :file, or :puppetmounts is used" do