diff options
-rwxr-xr-x | spec/unit/file_serving/configuration.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/file_serving/configuration.rb b/spec/unit/file_serving/configuration.rb index d51fa70b2..a89fdeaae 100755 --- a/spec/unit/file_serving/configuration.rb +++ b/spec/unit/file_serving/configuration.rb @@ -35,7 +35,7 @@ describe Puppet::FileServing::Configuration do Puppet::Util::Cacher.invalidate end - describe Puppet::FileServing::Configuration, " when initializing" do + describe Puppet::FileServing::Configuration, "when initializing" do it "should work without a configuration file" do FileTest.stubs(:exists?).with(@path).returns(false) @@ -55,7 +55,7 @@ describe Puppet::FileServing::Configuration do end end - describe Puppet::FileServing::Configuration, " when parsing the configuration file" do + describe Puppet::FileServing::Configuration, "when parsing the configuration file" do before do FileTest.stubs(:exists?).with(@path).returns(true) @@ -95,7 +95,7 @@ describe Puppet::FileServing::Configuration do end end - describe Puppet::FileServing::Configuration, " when finding files" do + describe Puppet::FileServing::Configuration, "when finding files" do before do @parser = mock 'parser' @@ -175,7 +175,7 @@ describe Puppet::FileServing::Configuration do end end - describe Puppet::FileServing::Configuration, " when checking authorization" do + describe Puppet::FileServing::Configuration, "when checking authorization" do before do @parser = mock 'parser' |