From 490a03d55e57a5a54202207b44eb406dda4c8c65 Mon Sep 17 00:00:00 2001 From: Luke Kanies Date: Fri, 4 Dec 2009 16:50:38 -0800 Subject: Cleaning up a test. Signed-off-by: Luke Kanies --- spec/unit/indirector/file.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/spec/unit/indirector/file.rb b/spec/unit/indirector/file.rb index 4b3532e24..fd56aa6c7 100755 --- a/spec/unit/indirector/file.rb +++ b/spec/unit/indirector/file.rb @@ -25,7 +25,7 @@ describe Puppet::Indirector::File do @request = stub 'request', :key => @path end - describe Puppet::Indirector::File, " when finding files" do + describe "when finding files" do it "should provide a method to return file contents at a specified path" do @searcher.should respond_to(:find) end @@ -76,7 +76,7 @@ describe Puppet::Indirector::File do end end - describe Puppet::Indirector::File, " when saving files" do + describe "when saving files" do before do @content = "my content" @file = stub 'file', :content => @content, :path => @path, :name => @path, :render => "mydata" @@ -141,7 +141,7 @@ describe Puppet::Indirector::File do end end - describe Puppet::Indirector::File, " when removing files" do + describe "when removing files" do it "should provide a method to remove files" do @searcher.should respond_to(:destroy) end -- cgit