summaryrefslogtreecommitdiffstats
path: root/spec/unit/file_serving/content.rb
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-08-24 14:11:48 -0500
committerLuke Kanies <luke@madstop.com>2008-08-26 22:40:40 -0700
commit550e3d6ad5aadfe99fc1e10efa77cc193d3a9df3 (patch)
tree5945db48003ab63c68db4f5d229345fb3ecef1a9 /spec/unit/file_serving/content.rb
parent90e70227b0bb7cfd104ae34de8f7c2b7250edb09 (diff)
downloadpuppet-550e3d6ad5aadfe99fc1e10efa77cc193d3a9df3.tar.gz
puppet-550e3d6ad5aadfe99fc1e10efa77cc193d3a9df3.tar.xz
puppet-550e3d6ad5aadfe99fc1e10efa77cc193d3a9df3.zip
Finishing the rename of FileBase => Base.
Git did something really strange, in that it apparently didn't add the new base.rb files even though I used 'git mv'. Also fixing some other failing tests I hadn't previously tracked down because of the magical tuple of autotest's suckiness and my laziness. Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'spec/unit/file_serving/content.rb')
-rwxr-xr-xspec/unit/file_serving/content.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/spec/unit/file_serving/content.rb b/spec/unit/file_serving/content.rb
index b747ced78..82353d23d 100755
--- a/spec/unit/file_serving/content.rb
+++ b/spec/unit/file_serving/content.rb
@@ -5,8 +5,8 @@ require File.dirname(__FILE__) + '/../../spec_helper'
require 'puppet/file_serving/content'
describe Puppet::FileServing::Content do
- it "should should be a subclass of FileBase" do
- Puppet::FileServing::Content.superclass.should equal(Puppet::FileServing::FileBase)
+ it "should should be a subclass of Base" do
+ Puppet::FileServing::Content.superclass.should equal(Puppet::FileServing::Base)
end
it "should indirect file_content" do