squelch warning in Author.PL
Matt S Trout [Tue, 6 Jul 2010 21:15:55 +0000 (22:15 +0100)]
Author.PL

index f4b55a3..c2f52d9 100644 (file)
--- a/Author.PL
+++ b/Author.PL
@@ -3,7 +3,9 @@ use warnings FATAL => 'all';
 
 {
   package MY;
-  push @ExtUtils::MakeMaker::Overridable, 'find_tests';
+  {
+    no warnings 'once'; push @ExtUtils::MakeMaker::Overridable, 'find_tests';
+  }
   sub find_tests {
     shift->SUPER::find_tests.' xt/*.t';
   }