Skip check for win32
Tomas Doran [Mon, 5 Sep 2011 11:54:43 +0000 (12:54 +0100)]
t/render_file_contents.t

index 45b0253..0dbcb0d 100644 (file)
@@ -20,7 +20,9 @@ ok( $helper->render_file_contents('example1',  $fn,
 ok -r $fn;
 ok -s $fn;
 my $perms = ( stat $fn )[2] & 07777;
-is $perms, 0677;
+unless ($^O eq 'MSWin32') {
+    is $perms, 0677;
+}
 unlink $fn;
 
 done_testing;