Skeleton testapp for testing the args thrown to the run method by scripts
[catagits/Catalyst-Runtime.git] / t / lib / TestAppToTestScripts.pm
1 package TestAppToTestScripts;
2 use strict;
3 use warnings;
4
5 our %RUN_ARGS;
6
7 sub run {
8     my ($class, %opts) = @_;
9     %RUN_ARGS = %opts;
10     1; # Does this work?
11 }
12
13 1;
14