Really fix uninit warning
Peter Rabbitson [Wed, 2 Jun 2010 10:43:30 +0000 (10:43 +0000)]
t/lib/DBICTest/AuthorCheck.pm

index 4507837..90903b4 100644 (file)
@@ -31,7 +31,7 @@ sub _check_author_makefile {
 
   # not using file->stat as it invokes File::stat which in turn breaks stat(_)
   my ($mf_pl_mtime, $mf_mtime, $optdeps_mtime) = ( map
-    { (stat ($root->file ($_)) )[9] }
+    { (stat ($root->file ($_)) )[9] || undef }  # stat returns () on nonexistent files
     (qw|Makefile.PL  Makefile|, $optdeps)
   );