Trivial test feature, fixes RT#53653
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Script / Test.pm
index 53473a4..36934b2 100644 (file)
@@ -10,7 +10,9 @@ sub run {
 
     Catalyst::Test->import($self->application_name);
 
-    print request($self->ARGV->[0])->content  . "\n";
+    foreach my $arg (@{ $self->ARGV }) {
+        print request($arg)->content  . "\n";
+    }
 }