update distar url
[catagits/Catalyst-Runtime.git] / t / lib / TestAppToTestScripts.pm
1 package TestAppToTestScripts;
2 use strict;
3 use warnings;
4 use Carp;
5
6 our @RUN_ARGS;
7
8 sub run {
9     @RUN_ARGS = @_;
10     1; # Does this work?
11 }
12
13 1;
14