Document the action config here, as people don't seem to find it and this may help..
[catagits/Catalyst-Runtime.git] / t / lib / TestAppWithMeta.pm
CommitLineData
c98492ae 1package TestAppWithMeta;
2use strict;
3use warnings;
4use Catalyst;
5
6no warnings 'redefine';
7sub meta {}
8use warnings 'redefine';
9
10__PACKAGE__->setup;
11
121;
13