summaryrefslogtreecommitdiffstats
path: root/spec/unit/type/file_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/unit/type/file_spec.rb')
-rwxr-xr-xspec/unit/type/file_spec.rb9
1 files changed, 6 insertions, 3 deletions
diff --git a/spec/unit/type/file_spec.rb b/spec/unit/type/file_spec.rb
index 327044db6..5388dc237 100755
--- a/spec/unit/type/file_spec.rb
+++ b/spec/unit/type/file_spec.rb
@@ -195,7 +195,7 @@ describe Puppet::Type.type(:file) do
file[:path].should == "/"
end
end
-
+
describe "on Microsoft Windows systems" do
before do
Puppet.features.stubs(:posix?).returns(false)
@@ -379,8 +379,11 @@ describe Puppet::Type.type(:file) do
File.open(@file, "w", 0644) { |f| f.puts "yayness"; f.flush }
File.symlink(@file, @link)
- @resource = Puppet::Type.type(:file).new(
+
+ @resource = Puppet::Type.type(:file).new(
+
:path => @link,
+
:mode => "755"
)
@catalog.add_resource @resource
@@ -406,7 +409,7 @@ describe Puppet::Type.type(:file) do
else # @real_posix
# should recode tests using expectations instead of using the filesystem
end
-
+
describe "on Microsoft Windows systems" do
before do
Puppet.features.stubs(:posix?).returns(false)