summaryrefslogtreecommitdiffstats
path: root/spec/unit/provider/zfs
diff options
context:
space:
mode:
authorIan Taylor <ian@lorf.org>2009-06-05 12:39:04 -0400
committerJames Turnbull <james@lovedthanlost.net>2009-06-06 09:12:00 +1000
commit4f2c066a97e59a89df64af4b25beac6f3f0553c2 (patch)
tree126540beec3c65448e01e1b48d27275ec4ee6ea4 /spec/unit/provider/zfs
parent97e6975d69f239e24993315a25a3117b1daa48c3 (diff)
downloadpuppet-4f2c066a97e59a89df64af4b25beac6f3f0553c2.tar.gz
puppet-4f2c066a97e59a89df64af4b25beac6f3f0553c2.tar.xz
puppet-4f2c066a97e59a89df64af4b25beac6f3f0553c2.zip
Removed extra whitespace from end of lines
Diffstat (limited to 'spec/unit/provider/zfs')
-rwxr-xr-xspec/unit/provider/zfs/solaris.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/provider/zfs/solaris.rb b/spec/unit/provider/zfs/solaris.rb
index 9189e44f0..8167340ce 100755
--- a/spec/unit/provider/zfs/solaris.rb
+++ b/spec/unit/provider/zfs/solaris.rb
@@ -43,15 +43,15 @@ describe provider_class do
@provider.delete
end
end
-
+
describe "when calling exist?" do
it "should call zfs with :list" do
#return stuff because we have to slice and dice it
@provider.expects(:zfs).with(:list).returns("NAME USED AVAIL REFER MOUNTPOINT\nmyzfs 100K 27.4M /myzfs")
@provider.exists?
end
-
- it "should return true if returned values match the name" do
+
+ it "should return true if returned values match the name" do
@provider.stubs(:zfs).with(:list).returns("NAME USED AVAIL REFER MOUNTPOINT\n#{@resource[:name]} 100K 27.4M /myzfs")
@provider.exists?.should == true
end
@@ -60,7 +60,7 @@ describe provider_class do
@provider.stubs(:zfs).with(:list).returns("no soup for you")
@provider.exists?.should == false
end
-
+
end
[:mountpoint, :compression, :copies, :quota, :reservation, :sharenfs, :snapdir].each do |prop|