Add tests to show that 5.80 broke ->req->parameters when you do on-demand parsing.
[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