diff options
author | Luke Kanies <luke@madstop.com> | 2008-08-23 21:20:21 -0500 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-08-26 22:40:40 -0700 |
commit | 1104edb13926a53ee90685d96700cb03eaeca509 (patch) | |
tree | cf2ee849df92ab3ab5fad8e683077925a14e5430 | |
parent | 2f224c9fc97cf632ee8a551180aaa08e263d77df (diff) | |
download | puppet-1104edb13926a53ee90685d96700cb03eaeca509.tar.gz puppet-1104edb13926a53ee90685d96700cb03eaeca509.tar.xz puppet-1104edb13926a53ee90685d96700cb03eaeca509.zip |
Correcting whitespace in a test
Signed-off-by: Luke Kanies <luke@madstop.com>
-rwxr-xr-x | spec/unit/file_serving/content.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/file_serving/content.rb b/spec/unit/file_serving/content.rb index 89d786295..5444f4abd 100755 --- a/spec/unit/file_serving/content.rb +++ b/spec/unit/file_serving/content.rb @@ -18,7 +18,7 @@ describe Puppet::FileServing::Content do end end -describe Puppet::FileServing::Content, " when returning the contents" do +describe Puppet::FileServing::Content, "when returning the contents" do before do @path = "/my/base" @content = Puppet::FileServing::Content.new("sub/path", :links => :follow, :path => @path) @@ -46,7 +46,7 @@ describe Puppet::FileServing::Content, " when returning the contents" do end end -describe Puppet::FileServing::Content, " when converting to yaml" do +describe Puppet::FileServing::Content, "when converting to yaml" do it "should fail if no path has been set" do @content = Puppet::FileServing::Content.new("some/key") proc { @content.to_yaml }.should raise_error(ArgumentError) @@ -60,7 +60,7 @@ describe Puppet::FileServing::Content, " when converting to yaml" do end end -describe Puppet::FileServing::Content, " when converting from yaml" do +describe Puppet::FileServing::Content, "when converting from yaml" do # LAK:FIXME This isn't in the right place, but we need some kind of # control somewhere that requires that all REST connections only pull # from the file-server, thus guaranteeing they go through our authorization |