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