Only set @ARGV if it's empty
Shawn M Moore [Mon, 22 Dec 2008 03:26:16 +0000 (03:26 +0000)]
author/munge-tests-for-moose.pl

index a851ba7..96ec4da 100755 (executable)
@@ -3,7 +3,7 @@ use strict;
 use warnings;
 
 BEGIN {
-    @ARGV = glob('t/*.t t/*/*.t');
+    @ARGV = glob('t/*.t t/*/*.t') if !@ARGV;
     $^I = '';
 }