Basic binary op logic FAIL
Peter Rabbitson [Tue, 17 Mar 2009 23:57:49 +0000 (23:57 +0000)]
t/33storage_reconnect.t

index 2a9f202..5bd797e 100644 (file)
@@ -8,11 +8,11 @@ use lib qw(t/lib);
 use DBICTest;
 
 # equivalent of $Module::Install::AUTHOR
-my $author =
-  not  -d './inc'
+my $author = (
+  ( not  -d './inc' )
     or
-  -e ($^O eq 'VMS' ? './inc/_author' : './inc/.author')
-;
+  ( -e ($^O eq 'VMS' ? './inc/_author' : './inc/.author') )
+);
 
 plan $author
   ? (tests => 6)