diff options
author | Luke Kanies <luke@madstop.com> | 2008-08-23 18:17:08 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-08-26 22:40:39 -0700 |
commit | 237b7b294bf90c87891964d01429bbdd42a92524 (patch) | |
tree | 7abdb8951b3cc109e7017f3eb14967c122b9eebd | |
parent | 91b8252755c78dde752c2e06cf13ab0d757aad42 (diff) | |
download | puppet-237b7b294bf90c87891964d01429bbdd42a92524.tar.gz puppet-237b7b294bf90c87891964d01429bbdd42a92524.tar.xz puppet-237b7b294bf90c87891964d01429bbdd42a92524.zip |
Fixing whitespace in docs of some tests.
Signed-off-by: Luke Kanies <luke@madstop.com>
-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' |